* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f4f5f7;
    --surface: #ffffff;
    --surface-soft: #eef1f5;
    --text: #1b2230;
    --muted: #667085;
    --brand: #d72d2d;
    --brand-dark: #a51e1e;
    --nav: #101722;
    --line: #d8dee8;
    --shadow: 0 12px 30px rgba(14, 24, 39, 0.14);
    --radius: 16px;
}

body {
    min-height: 100vh;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top right, #ffffff 0%, #f4f5f7 42%, #e9edf3 100%);
    line-height: 1.6;
}

h1 {
    text-align: center;
    padding: 8px 12px;
}

h1 img {
    width: min(460px, 90vw);
    max-width: 100%;
    height: auto;
}

nav {
    background-color: var(--nav);
    border-top: 1px solid #1f2a3d;
    border-bottom: 1px solid #1f2a3d;
    position: sticky;
    top: 0;
    z-index: 50;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul a {
    display: inline-block;
    padding: 14px 22px;
    text-decoration: none;
    color: #f7f9fc;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

nav ul a:hover,
nav ul a:focus-visible {
    background-color: var(--brand);
    color: #ffffff;
    transform: translateY(-2px);
}

.about {
    max-width: 920px;
    margin: 36px auto;
    padding: 0 20px;
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 28px;
}

.about-card h2 {
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-card p {
    margin-top: 14px;
    color: #3b475d;
    font-size: 1.04rem;
}

.about-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.about-point {
    background: var(--surface-soft);
    border: 1px solid #dce3ee;
    border-radius: 12px;
    padding: 16px;
}

.about-point h3 {
    color: var(--brand-dark);
    font-size: 1rem;
}

.about-point p {
    margin-top: 6px;
    color: #46536b;
    font-size: 0.95rem;
}

footer {
    margin-top: 40px;
    background: linear-gradient(180deg, #161f2f 0%, #0f1522 100%);
}

.footerContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 14px;
}

.socialIcons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.socialIcons a {
    text-decoration: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: rgba(255, 255, 255, 0.12);
    color: #f8fbff;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.socialIcons a i {
    font-size: 1.2rem;
}

.socialIcons a:hover,
.socialIcons a:focus-visible {
    background-color: var(--brand);
    color: #ffffff;
    transform: translateY(-3px);
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 14px 20px 18px;
    text-align: center;
}

.footerBottom p {
    color: #d8dfec;
    font-size: 0.9rem;
}

.designer {
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    h1 {
        padding: 6px;
    }

    nav ul a {
        width: 50%;
        text-align: center;
        padding: 12px 8px;
        font-size: 0.84rem;
    }

    .about {
        margin: 24px auto;
        padding: 0 14px;
    }

    .about-card {
        padding: 22px 18px;
    }

    .about-card h2 {
        font-size: 1.5rem;
    }
}
