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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 50%, #0f0f0f 100%);
    min-height: 100vh;
    padding: 2rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #fafafa;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    padding: 3rem;
    border: 2px solid #dc2626;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.logo-and-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.logo {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

h1 {
    color: #dc2626;
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    text-align: center;
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-family: 'Crimson Text', serif;
    font-weight: 400;
}

h2 {
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    border-bottom: 3px solid #dc2626;
    padding-bottom: 0.6rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1a1a1a;
}

p {
    margin-bottom: 1.2rem;
    text-align: justify;
    font-weight: 400;
    color: #2a2a2a;
}

.highlight-box {
    background: linear-gradient(135deg, #fef2f2 0%, #f8f8f8 100%);
    border-left: 6px solid #dc2626;
    border-right: 2px solid #dc2626;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.highlight-box h3 {
    color: #dc2626;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.7rem;
    color: #2a2a2a;
}

.footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #dc2626;
    text-align: center;
    color: #4a4a4a;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

strong {
    color: #dc2626;
    font-weight: 600;
}

a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    font-size: 1.5rem;
    color: #dc2626;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #b91c1c;
    text-decoration: none;
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
        background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 50%, #0f0f0f 100%);
    }

    .container {
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid #dc2626;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .logo-and-title {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo {
        max-width: 100px;
        max-height: 100px;
    }

    h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    p {
        text-align: left;
        margin-bottom: 1rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .highlight-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 8px;
        border-left: 4px solid #dc2626;
        border-right: 1px solid #dc2626;
    }

    .highlight-box h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    ul {
        margin-left: 1.5rem;
        margin-bottom: 1rem;
    }

    li {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    .social-links {
        margin-top: 1rem;
        gap: 1.5rem;
    }

    .social-links a {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.5rem;
    }

    .container {
        padding: 1rem;
        border-radius: 8px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    p, li {
        font-size: 0.9rem;
    }

    .highlight-box {
        padding: 1rem;
        margin: 1rem 0;
    }

    .logo {
        max-width: 80px;
        max-height: 80px;
    }

    ul {
        margin-left: 1rem;
    }
}

/* Improve readability and accessibility */
@media (max-width: 768px) {
    /* Ensure text doesn't get too small */
    * {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Better spacing for touch interactions */
    p, li {
        margin-bottom: 1rem;
    }

    /* Prevent horizontal scroll */
    .container {
        width: 100%;
        max-width: none;
        margin: 0;
    }
}