* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    background-color: #0d1117;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

h2 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #0d1117;
}

@media (min-width: 768px) {
    .container {
        margin: 20px auto;
    }
}

/* Hero Section */
.hero {
    padding: 30px 20px 0 20px;
    text-align: center;
}

.header-badge {
    background: linear-gradient(90deg, #041605 0%, #072309 100%);
    border: 1px solid #1c4d29;
    border-radius: 12px;
    padding: 12px 15px;
    margin: 0 auto 20px;
    max-width: 95%;
}

.header-badge p {
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

.hero h1 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: bold;
}

@media (min-width: 768px) {
    .hero {
        padding: 50px 60px 0 60px;
    }

    .header-badge {
        padding: 15px 40px;
        margin-bottom: 25px;
        max-width: 850px;
        border-radius: 12px;
    }

    .header-badge p {
        font-size: 20px;
        line-height: 1.4;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

    .header-badge p {
        font-size: 22px;
    }
}

.highlight {
    color: #fbbf24;
}

.features {
    margin: 12px 0;
    text-align: left;
    display: inline-block;
}

.features p {
    font-size: 20px;
    margin: 8px 0;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "DM Sans", sans-serif;
}

.features .check {
    font-size: 18px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .features {
        margin: 22px 0;
    }

    .features p {
        font-size: 22px;
        margin: 10px 0;
        gap: 8px;
    }

    .features .check {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .features p {
        font-size: 22px;
    }
}

.hero-image {
    position: relative;
    margin: 15px auto 40px;
    padding: 0;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid #fbbf24;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.4);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .hero-image {
        margin: 20px auto 50px;
        max-width: 850px;
        border-radius: 20px;
        border: 4px solid #fbbf24;
        box-shadow: 0 0 60px rgba(251, 191, 36, 0.5);
    }
}

@media (min-width: 1024px) {
    .hero-image {
        max-width: 900px;
    }
}

.guarantee {
    background-color: #065f46;
    border: 2px solid #10b981;
    border-radius: 30px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.guarantee-icon {
    background-color: #10b981;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.guarantee p {
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .guarantee {
        padding: 15px 30px;
        border-radius: 35px;
    }

    .guarantee-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .guarantee p {
        font-size: 14px;
    }
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.icon {
    font-size: 18px;
}

@media (min-width: 768px) {
    .stats {
        gap: 50px;
        margin: 30px 0;
    }

    .stat {
        font-size: 16px;
    }

    .icon {
        font-size: 22px;
    }
}

.cta-button {
    background-color: #dc2626;
    color: #ffffff;
    border: none;
    padding: 22px 50px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 18px;
    cursor: pointer;
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.4;
}

.cta-button:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.small-text {
    font-size: 16px;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

@media (min-width: 768px) {
    .cta-button {
        padding: 26px 60px;
        font-size: 26px;
        max-width: 750px;
        margin: 30px auto;
        border-radius: 20px;
    }

    .small-text {
        font-size: 18px;
        margin-top: 6px;
    }
}

@media (min-width: 1024px) {
    .cta-button {
        padding: 28px 70px;
        font-size: 28px;
        max-width: 800px;
    }

    .small-text {
        font-size: 20px;
    }
}

.trust-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    flex-wrap: nowrap;
}

.trust-text {
    font-size: 13px;
    color: #e5e7eb;
    text-align: left;
    line-height: 1.2;
    white-space: nowrap;
}

.trust-number {
    display: inline;
    font-weight: bold;
    color: #fbbf24;
}

.people-image img {
    height: 40px;
    width: auto;
    display: block;
    margin-top: -15px;
}

@media (min-width: 768px) {
    .trust-section {
        gap: 20px;
        margin: 30px 0;
    }

    .trust-text {
        font-size: 18px;
    }

    .people-image img {
        height: 60px;
        margin-top: 0;
    }
}

.social-proof {
    margin: 30px 0;
}

.joined-text {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.avatars {
    display: flex;
    justify-content: center;
    gap: -10px;
    margin-top: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #0f1419;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

/* Benefits Box */
.benefits-box {
    background-color: #041605;
    border: 1px solid #1c4d29;
    border-radius: 12px;
    padding: 10px 20px;
    margin: 30px auto;
    max-width: 90%;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 5px;
}

.benefit-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-text {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    padding-top: 1px;
    font-family: "DM Sans", sans-serif;
}

.benefit-divider {
    border-top: 1px dashed #1c4d29;
    margin: 0 5px;
}

@media (min-width: 768px) {
    .benefits-box {
        padding: 15px 25px;
        max-width: 420px;
        border-radius: 16px;
    }

    .benefit-item {
        gap: 12px;
        padding: 15px 0;
    }

    .benefit-icon {
        font-size: 24px;
    }

    .benefit-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (min-width: 1024px) {
    .benefits-box {
        max-width: 420px;
        padding: 25px 30px;
    }

    .benefit-icon {
        font-size: 26px;
    }

    .benefit-text {
        font-size: 15px;
    }
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.countdown-item {
    background-color: #1a0f2e;
    border: 2px solid #7c3aed;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #c4b5fd;
}

.countdown-label {
    display: block;
    font-size: 12px;
    color: #a0aec0;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 28px;
    font-weight: bold;
    color: #c4b5fd;
}

@media (min-width: 768px) {
    .countdown {
        gap: 12px;
        margin: 40px 0;
    }

    .countdown-item {
        padding: 14px 24px;
        border-radius: 12px;
    }

    .countdown-number {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 13px;
        margin-top: 8px;
    }

    .countdown-separator {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .countdown-item {
        padding: 16px 28px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .countdown-label {
        font-size: 14px;
    }

    .countdown-separator {
        font-size: 36px;
    }
}

.disclaimer {
    font-size: 18px;
    color: #fff;
    margin: 20px 0 10px 0;
    text-align: center;
    font-weight: 400;
}

@media (min-width: 768px) {
    .disclaimer {
        font-size: 18px;
        margin: 25px 0 15px 0;
    }
}

@media (min-width: 1024px) {
    .disclaimer {
        font-size: 19px;
    }
}

/* Why Attend Section */
.why-attend {
    padding: 0 20px 40px 20px;
    background-color: #0d1117;
}

.why-attend h2 {
    font-size: 28px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
    font-style: italic;
    color: #ffffff;
    font-family: "DM Serif Display", serif;
    font-weight: 400;
}

@media (min-width: 768px) {
    .why-attend {
        padding: 0 60px 60px 60px;
    }

    .why-attend h2 {
        font-size: 38px;
        margin-top: 0;
        margin-bottom: 25px;
    }
}

.italic {
    font-style: italic;
    color: #ffffff;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0 0 0;
}

.reason {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #09373c 0%, #071e23 50%, #041416 100%);
    border: 1px solid #2ab4ff;
    padding: 18px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.reason:hover {
    transform: translateY(-3px);
}

.check-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.check-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.reason p {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

@media (min-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .reason {
        padding: 20px 22px;
        gap: 18px;
    }

    .check-icon {
        width: 45px;
        height: 45px;
    }

    .reason p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (min-width: 1024px) {
    .check-icon {
        width: 50px;
        height: 50px;
    }

    .reason p {
        font-size: 16px;
    }
}

/* Who Section */
.who-section {
    padding: 10px 20px 40px 20px;
    background-color: #0d1117;
}

.who-section h2 {
    font-size: 32px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
    color: #fbbf24;
    font-style: italic;
    font-family: "DM Serif Display", serif;
    font-weight: 400;
}

.subtitle {
    font-size: 14px;
    text-align: center;
    color: #9ca3af;
    margin-bottom: 40px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .who-section {
        padding: 0 60px 60px 60px;
    }

    .who-section h2 {
        font-size: 42px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 15px;
        margin-bottom: 50px;
    }
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.audience-card {
    background-color: #1c1c1c;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #3a3a3a;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: #4a4a4a;
}

.card-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.audience-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .audience-card {
        padding: 35px 25px;
    }

    .card-image {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }

    .audience-card p {
        font-size: 17px;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .card-image {
        width: 160px;
        height: 160px;
    }

    .audience-card p {
        font-size: 18px;
    }
}

.footer-text {
    font-size: 20px;
    text-align: center;
    margin: 40px auto 30px;
    padding: 20px 30px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    background: linear-gradient(90deg, #041605 0%, #072309 25%, #093c0d 50%, #072309 75%, #041605 100%);
    border: 1px solid #1c4d29;
    border-radius: 12px;
    max-width: 90%;
}

@media (min-width: 768px) {
    .footer-text {
        font-size: 16px;
        margin: 50px auto 40px;
        padding: 22px 40px;
        max-width: 900px;
    }
}

@media (min-width: 1024px) {
    .footer-text {
        font-size: 17px;
    }
}

/* Responsive */
@media (min-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1000px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .why-attend h2,
    .who-section h2 {
        font-size: 45px;
    }
}

/* SEBI Badge */
.sebi-badge {
    background: linear-gradient(90deg, #1f5527 0%, #0a3d2e 15%, #051f17 35%, #051f17 65%, #0a3d2e 85%, #1f5527 100%);
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding: 15px 25px;
    margin: 30px auto;
    max-width: 90%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sebi-logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.sebi-text {
    text-align: left;
    flex: 1;
    line-height: 1.2;
}

.sebi-title {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 2px 0;
    color: #e5e7eb;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.sebi-number {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .sebi-badge {
        padding: 18px 30px;
        max-width: 600px;
        border-radius: 22px;
        gap: 18px;
    }

    .sebi-logo {
        width: 60px;
        height: 60px;
    }

    .sebi-title {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .sebi-number {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .sebi-badge {
        max-width: 650px;
        padding: 20px 35px;
    }

    .sebi-logo {
        width: 70px;
        height: 70px;
    }

    .sebi-title {
        font-size: 18px;
    }

    .sebi-number {
        font-size: 28px;
    }
}

/* Event Details */
.event-details {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: nowrap;
}

.event-item {
    background-color: #0f1419;
    border: 1px solid #1f2937;
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-icon {
    display: flex;
    align-items: center;
}

.event-icon img {
    width: 24px;
    height: 24px;
}

.event-text {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

@media (min-width: 768px) {
    .event-details {
        gap: 20px;
        margin: 40px 0;
    }

    .event-item {
        padding: 16px 25px;
        border-radius: 12px;
        gap: 15px;
    }

    .event-icon img {
        width: 32px;
        height: 32px;
    }

    .event-text {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .event-item {
        padding: 20px 30px;
    }

    .event-icon img {
        width: 36px;
        height: 36px;
    }

    .event-text {
        font-size: 24px;
    }
}

/* Trust Section */
.trust-section {
    margin: 40px 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.trust-text {
    font-size: 18px;
    line-height: 1.3;
    margin: 0;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
}

.trust-number {
    color: #fbbf24;
    font-weight: bold;
    font-size: 20px;
    display: block;
}

.people-image {
    flex-shrink: 0;
}

.people-image img {
    height: 60px;
    width: auto;
    display: block;
}

@media (min-width: 768px) {
    .trust-section {
        gap: 40px;
        margin: 50px 0;
    }

    .trust-text {
        font-size: 20px;
    }

    .trust-number {
        font-size: 22px;
    }

    .people-image img {
        height: 70px;
    }
}

@media (min-width: 1024px) {
    .trust-section {
        gap: 50px;
    }

    .trust-text {
        font-size: 22px;
    }

    .trust-number {
        font-size: 24px;
    }

    .people-image img {
        height: 80px;
    }
}

/* Algo Simulator Section */
.simulator-section {
    padding: 0 20px 10px 20px;
    background-color: #0d1117;
    text-align: center;
}

.simulator-section h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
    font-style: italic;
    color: #fbbf24;
    line-height: 1.3;
    font-weight: 400;
}

.simulator-subtitle {
    font-size: 15px;
    color: #d1d5db;
    margin-bottom: 40px;
    font-weight: 400;
}

.simulator-image {
    margin: 40px auto;
    max-width: 85%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #42e761;
    box-shadow: 0 0 40px rgba(66, 231, 97, 0.3);
}

.simulator-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .simulator-section {
        padding: 0 60px 20px 60px;
    }

    .simulator-section h2 {
        font-size: 38px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .simulator-subtitle {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .simulator-image {
        max-width: 750px;
        margin: 50px auto;
        border-radius: 20px;
        border: 1px solid #42e761;
        box-shadow: 0 0 60px rgba(66, 231, 97, 0.4);
    }
}

@media (min-width: 1024px) {
    .simulator-section h2 {
        font-size: 48px;
    }

    .simulator-subtitle {
        font-size: 18px;
    }

    .simulator-image {
        max-width: 800px;
    }
}

/* SEBI Trust Section */
.sebi-trust-section {
    padding: 0 20px 10px 20px;
    background-color: #0d1117;
    text-align: center;
}

.sebi-trust-section h2 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 15px;
    font-style: italic;
    color: #fbbf24;
    line-height: 1.3;
    font-weight: 400;
}

.trust-subtitle {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 40px;
    font-weight: 400;
}

.trust-description {
    font-size: 18px;
    color: #fff;
    line-height: 1.7;
    margin: 30px auto;
    max-width: 90%;
    text-align: center;
}

@media (min-width: 768px) {
    .sebi-trust-section {
        padding: 0 60px 20px 60px;
    }

    .sebi-trust-section h2 {
        font-size: 42px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .trust-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }

    .trust-description {
        font-size: 17px;
        line-height: 1.8;
        max-width: 850px;
        margin: 35px auto;
    }
}

@media (min-width: 1024px) {
    .sebi-trust-section h2 {
        font-size: 52px;
    }

    .trust-subtitle {
        font-size: 19px;
    }

    .trust-description {
        font-size: 18px;
        max-width: 900px;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 0 20px 20px 20px;
    background-color: #0d1117;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 30px;
    font-style: italic;
    color: #fbbf24;
    line-height: 1.3;
    font-weight: 400;
}

.ellipsis {
    color: #fbbf24;
}

.final-description {
    font-size: 18px;
    color: #fff;
    line-height: 1.7;
    margin: 20px auto;
    max-width: 90%;
}

@media (min-width: 768px) {
    .final-cta-section {
        padding: 0 60px 20px 60px;
    }

    .final-cta-section h2 {
        font-size: 42px;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .final-description {
        font-size: 18px;
        line-height: 1.8;
        max-width: 850px;
        margin: 25px auto;
    }
}

@media (min-width: 1024px) {
    .final-cta-section h2 {
        font-size: 52px;
    }

    .final-description {
        font-size: 20px;
        max-width: 900px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 0 20px 60px 20px;
    background-color: #0d1117;
}

.faq-section h2 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
    font-style: italic;
    color: #fbbf24;
    line-height: 1.3;
    text-align: center;
    font-weight: 400;
}

.faq-intro {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.7;
    margin: 0 auto 40px;
    max-width: 90%;
    text-align: center;
}

.faq-intro strong {
    color: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto 40px;
}

.faq-item {
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1c2332;
    border: 1px solid #2d3748;
}

.faq-q {
    width: 100%;
    background-color: #1c2332;
    color: #ffffff;
    border: none;
    padding: 18px 20px 18px 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.faq-q:hover {
    background-color: #242d3f;
}

.faq-q::before {
    content: "+";
    position: absolute;
    left: 18px;
    font-size: 28px;
    font-weight: 400;
    color: #fbbf24;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.open .faq-q::before {
    content: "−";
}

.faq-a {
    height: 0;
    overflow: hidden;
    background-color: transparent;
    color: #d1d5db;
    padding: 0 20px 0 50px;
    transition: height 0.3s ease;
}

.faq-item.open .faq-a {
    padding: 10px 10px 20px 30px;
}

.faq-a p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.faq-a strong {
    font-weight: 700;
    color: #ffffff;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 0 60px 80px 60px;
    }

    .faq-section h2 {
        font-size: 42px;
        margin-top: 0;
        margin-bottom: 25px;
    }

    .faq-intro {
        font-size: 17px;
        max-width: 850px;
        margin-bottom: 50px;
    }

    .faq-list {
        max-width: 950px;
    }

    .faq-q {
        font-size: 17px;
        padding: 20px 22px 20px 55px;
    }

    .faq-a p {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .faq-section h2 {
        font-size: 52px;
    }

    .faq-intro {
        font-size: 18px;
        max-width: 900px;
    }

    .faq-list {
        max-width: 1000px;
    }

    .faq-q {
        font-size: 18px;
    }

    .faq-a p {
        font-size: 17px;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 550px;
    position: relative;
    color: #333333;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    font-weight: bold;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.registration-form input {
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    color: #333;
}

.registration-form input::placeholder {
    color: #888;
}

.modal-submit-button {
    background-color: #ff4d61;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition:
        background-color 0.3s ease,
        transform 0.1s ease;
}

.modal-submit-button:hover {
    background-color: #ff334b;
}

.modal-submit-button:active {
    transform: scale(0.98);
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.modal-footer p {
    margin: 8px 0;
    font-weight: 500;
}
