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

:root {
    --primary-blue: #5b6ef7;
    --dark-navy: #0f1629;
    --navy: #151b33;
    --white: #ffffff;
    --gray-text: #b8bcc8;
    --light-gray: #f5f6fa;
    --accent-coral: #d4694a;
    --green-check: #22c55e;
}

/* Dark theme colors */
:root {
    --bg-primary: #0f1629;
    --bg-secondary: #151b33;
    --text-primary: #ffffff;
    --text-secondary: #b8bcc8;
    --header-bg: #0f1629;
    --card-bg: #ffffff;
    --card-text: #0f1629;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    transition: background-color 0.3s ease;
}

/* Ensure focused elements aren't hidden by sticky header */
[id] {
    scroll-margin-top: 100px;
}

:target {
    scroll-margin-top: 100px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 0.5rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

nav a:hover {
    color: var(--primary-blue);
}

nav a:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

.login-btn {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.75rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.login-btn:hover {
    background: #4a5de6;
}

.login-btn:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 4rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    gap: 4rem;
}

.hero::before {
    content: "";
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border: 60px solid rgba(91, 110, 247, 0.1);
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 .taking {
    color: var(--primary-blue);
}

.hero h1 .control {
    color: var(--primary-blue);
    position: relative;
}

.hero h1 .control::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    transition: background-color 0.3s ease;
}

.hero h1 .starts {
    color: var(--primary-blue);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #4a5de6;
}

.btn-primary:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--text-primary);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-media-container {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.hero-media-container img,
.hero-media-container video {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Mute/Unmute button */
.mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.3s,
        transform 0.2s;
    z-index: 10;
}

.mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.mute-btn:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.mute-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.mute-btn .unmute-icon {
    display: block;
}

.mute-btn .mute-icon {
    display: none;
}

.mute-btn.unmuted .unmute-icon {
    display: none;
}

.mute-btn.unmuted .mute-icon {
    display: block;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 4rem;
    background: var(--white);
    position: relative;
}

.how-it-works::before {
    content: "";
    position: absolute;
    left: -100px;
    top: 0;
    width: 300px;
    height: 300px;
    border: 40px solid rgba(91, 110, 247, 0.05);
    border-radius: 50%;
}

.section-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.step-icon {
    width: 200px;
    height: 140px;
    margin: 0 auto 2rem;
    position: relative;
}

.step-1-icon {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 12px;
    position: relative;
}

.step-1-icon::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 10px;
    width: 120px;
    height: 30px;
    background: var(--dark-navy);
    border-radius: 8px;
}

.form-lines {
    padding: 1.5rem;
}

.form-line {
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    margin-bottom: 0.75rem;
}

.form-line:first-child {
    width: 80%;
}

.form-line:nth-child(2) {
    width: 100%;
}

.form-line:nth-child(3) {
    width: 60%;
}

.step-2-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.id-card {
    width: 180px;
    height: 120px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.id-avatar {
    width: 50px;
    height: 50px;
    background: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.id-avatar svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.id-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 0 2rem;
}

.id-line {
    height: 8px;
    background: #ddd;
    border-radius: 4px;
}

.verify-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: var(--green-check);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.step-3-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock {
    width: 120px;
    height: 120px;
    background: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.clock-face {
    width: 100px;
    height: 100px;
    position: relative;
}

.clock-hand-hour {
    position: absolute;
    width: 4px;
    height: 25px;
    background: var(--white);
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(0deg);
    border-radius: 2px;
}

.clock-hand-minute {
    position: absolute;
    width: 3px;
    height: 35px;
    background: var(--white);
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) translateY(-100%) rotate(90deg);
    border-radius: 2px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.step-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 70px;
    width: 100px;
    border-top: 2px dashed #ccc;
}

.connector-1 {
    left: calc(33.33% - 50px);
}

.connector-2 {
    left: calc(66.66% - 50px);
}

/* Integrated Platforms Section */
.platforms {
    padding: 6rem 4rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.platforms::after {
    content: "";
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border: 60px solid rgba(91, 110, 247, 0.08);
    border-radius: 50%;
}

.platforms .section-label {
    color: var(--text-secondary);
}

.platforms .section-title {
    color: var(--primary-blue);
}

.platforms .section-subtitle {
    color: var(--text-secondary);
    margin-top: 3rem;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.platform-card {
    width: 250px;
    height: 160px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-logo-img {
    max-width: 180px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Resources Section */
.resources {
    padding: 6rem 4rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.resources::before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    border: 50px solid rgba(91, 110, 247, 0.08);
    border-radius: 50%;
}

.resources .section-title {
    color: var(--primary-blue);
}

.resources .section-subtitle {
    color: var(--text-secondary);
}

.resources .section-label {
    color: var(--text-secondary);
}

.resources-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.resource-card {
    flex: 1;
    max-width: 400px;
    background: var(--white);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card h3 {
    color: var(--dark-navy);
    font-size: 1.5rem;
    font-weight: 600;
}

.resource-card p {
    color: var(--dark-navy);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.resource-card a {
    color: var(--dark-navy);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-card a:hover {
    color: var(--primary-blue);
}

.resource-card a:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Self-Assessment Section */
.self-assessment {
    padding: 6rem 4rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.self-assessment::before {
    content: "";
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border: 60px solid rgba(91, 110, 247, 0.08);
    border-radius: 50%;
}

.self-assessment .section-label {
    color: var(--text-secondary);
}

.self-assessment .section-title {
    color: var(--primary-blue);
}

.self-assessment .section-subtitle {
    color: var(--text-secondary);
    max-width: 700px;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.assessment-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.assessment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.assessment-number {
    min-width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.assessment-item p {
    color: var(--dark-navy);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.assessment-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.assessment-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 4rem;
    background: var(--white);
    position: relative;
}

.faq .section-label {
    color: var(--dark-navy);
}

.faq .section-title {
    color: var(--primary-blue);
}

.faq .section-subtitle {
    color: #666;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-blue);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--light-gray);
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    font-family: "Inter", sans-serif;
}

.faq-question:hover {
    background: #e8e9f0;
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: -2px;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--white);
}

.faq-answer-content {
    padding: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

@media (max-width: 992px) {
    .assessment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .assessment-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta {
    padding: 6rem 4rem;
    background: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.cta .btn-primary {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

footer::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border: 40px solid rgba(91, 110, 247, 0.08);
    border-radius: 50%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.age-restriction {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 6rem;
}

.footer-column h4 {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: inline-block;
    padding: 0.25rem 0;
    min-height: 44px;
    line-height: 1.5;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-column a:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Skip to content link - Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus-visible {
    top: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    color: var(--dark-navy);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cookie-btn-accept {
    background: var(--primary-blue);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: #4a5de6;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--dark-navy);
    border: 1px solid var(--dark-navy);
}

.cookie-btn-decline:hover {
    background: var(--dark-navy);
    color: var(--white);
}

.cookie-btn:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-blue);
    text-decoration: underline;
    padding: 0.75rem 0.5rem;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(91, 110, 247, 0.2);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-powered {
    display: flex;
    flex-direction: column;
}

.ic360-logo {
    display: inline-block;
    margin-top: 0.5rem;
}

.ic360-logo img {
    height: 28px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.ic360-logo:hover img {
    opacity: 1;
}

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

    .hero-media-container {
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    header {
        padding: 1rem 2rem;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 7rem 2rem 4rem;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        margin-top: 1rem;
    }

    .hero-media-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .mute-btn {
        width: 44px;
        height: 44px;
        bottom: 15px;
        right: 15px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

    .platforms-grid {
        flex-direction: column;
        align-items: center;
    }

    .resources-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-wrapper {
        gap: 1.5rem;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .hero-media-container {
        max-width: 100%;
    }

    .mute-btn {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }

    .mute-btn svg {
        width: 20px;
        height: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .how-it-works {
        padding: 4rem 1.5rem;
    }

    .step {
        max-width: 100%;
    }

    .platforms {
        padding: 4rem 1.5rem;
    }

    .resources {
        padding: 4rem 1.5rem;
    }

    .self-assessment {
        padding: 4rem 1.5rem;
    }

    .assessment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .assessment-item {
        padding: 1rem;
    }

    .faq {
        padding: 4rem 1.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .cta {
        padding: 4rem 1.5rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-column {
        align-items: center;
    }

    .footer-column ul {
        align-items: center;
    }
}
