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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: black;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #efa0b2;
    backdrop-filter: blur(10px);
    margin-bottom: 60px;
}

.hero .logo {
    display: block;
    max-width: 400px;
    max-height: 220px;
    width: auto;
    height: auto;
    margin: 0 auto 40px;
    border-radius: 12px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #020102;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero .headline {
    font-size: 2rem;
    font-weight: 300;
    color: #020102;
    margin-bottom: 30px;
    font-style: italic;
}

.hero .subtext {
    font-size: 1.2rem;
    color: #020102;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Content Sections */
.content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.section {
    padding: 50px 60px;
    border-bottom: 1px solid #f1f3f4;
}

.section:last-child {
    border-bottom: none;
}

.section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #538b8a;
    border-radius: 2px;
}

.section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #34495e;
    margin: 30px 0 15px 0;
}

.section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    color: #020102;
    margin: 30px 0 -20px 0;
}
.section p {
    margin-bottom: 20px;
    color: #020102;
    line-height: 1.8;
}

.section ul {
    list-style: none;
    padding-left: 0;
}

.section li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #020102;
}

.section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #538b8a;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Content Images */
.section-image {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
}

.full-bod {
    max-width: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 20px;
    padding: 0;
}

.faq-item::before {
    display: none;
}

.faq-question {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.faq-answer {
    color: #555;
    margin-left: 20px;
}

/* Call to Action */
.cta-section {
    text-align: center;
    padding: 60px;
    background: #f0a0b2;
}

.cta-section-instructions {
    padding: 60px;
    background: #f0a0b2;
}

.cta-section-instructions p {
    margin-bottom: 20px;
    color: #020102;
    line-height: 1.8;
}

.cta-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.cta-section-instructions h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.cta-section h2::after {
    display: none;
}

.cta-section-instructions h2::after {
    display: none;
}

.cta-button {
    display: inline-block;
    background: #538b8a;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.cta-description {
    font-size: 1rem;
    color: #020102;
    max-width: 400px;
    margin: 0 auto 40px;
}


.cta-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.bigger-font {
    font-size: 20px;
    margin-top: 10px;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 300px; /* fixed width ensures alignment */
    margin-bottom: 20px;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #020102;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #2c3e50;
}

.profile-role {
    font-size: 1rem;
    color: #020102;
}


/* Footer */
.footer {
    background: #f0a0b2;
    padding: 20px 0;
    text-align: center;
    color: #020102;
    margin-top: 60px;
}

.footer p {
    margin-bottom: 10px;
}

/* Entry Page Styles */
.entry-container {
    display: flex;
    justify-content: center;
    padding: 30px 20px 40px;
}

.entry-content {
    background: #f0a0b2;
    color: #020102;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.entry-button {
    display: inline-block;
    background-color: #538b8a;
    color: #020102;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.entry-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.entry-description {
    font-size: 1.1rem;
    color: #020102;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .headline {
        font-size: 1.5rem;
    }

    .hero .subtext {
        font-size: 1.1rem;
    }

    .hero .logo {
        max-width: 300px;
        max-height: 200px;
        margin-bottom: 30px;
    }

    .section {
        padding: 40px 30px;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .cta-section {
        padding: 40px 30px;
    }

    .cta-section-instructions {
        padding: 40px 30px;
    }

    .entry-container {
        padding: 30px 20px;
    }

    .entry-content {
        padding: 40px 30px;
    }

    .entry-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .headline {
        font-size: 1.3rem;
    }

    .section {
        padding: 30px 20px;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-section-instructions {
        padding: 30px 20px;
    }

    .bigger-font {
        font-size: 18px;
        margin-top: 10px;
    }

    .entry-content {
        padding: 30px 20px;
    }

    .entry-content h1 {
        font-size: 1.8rem;
    }
}