:root {
    --primary: #1a1a2e;
    /* Deep navy blue - main brand color */
    --secondary: #16213e;
    /* Dark blue - secondary brand color */
    --accent: #e94560;
    /* Coral red - accent color */
    --light: #f8f9fa;
    /* Light background */
    --dark: #0f0f1a;
    /* Dark text color */
    --gray: #4a4a68;
    /* Medium gray with blue undertones */
    --highlight: #0f3460;
    /* Rich blue for highlights */
    --light-accent: #f8a1ab;
    /* Light coral for subtle accents */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.nav-vertical {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.nav-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--highlight);
    color: var(--highlight);
    font-weight: 600;
}

.nav-item:hover {
    background-color: var(--highlight);
    color: white;
    transform: scale(1.1);
}

.nav-item.active {
    background-color: var(--highlight);
    color: white;
}

/* Sections */
section {
    min-height: 100vh;
    padding: 80px 120px;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
}

/* Hero Section */
#home {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.9) 100%),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: white;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.logo {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
}

.logo span {
    color: var(--accent);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.btn:hover {
    background-color: var(--highlight);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 52, 96, 0.3);
}

/* About Section */
#about {
    background-color: white;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray);
}

.team-member {
    flex: 1;
    background-color: var(--light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 4px solid var(--accent);
}

.member-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-name {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--primary);
    font-weight: 700;
}

.member-title {
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.member-bio {
    color: var(--gray);
    line-height: 1.8;
}

/* Services Section */
#services {
    background-color: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.service-desc {
    color: var(--gray);
    line-height: 1.8;
}

/* Contact Section */
#contact {
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
}

.info-icon {
    margin-right: 15px;
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 3px;
}

.contact-form {
    flex: 1;
    background-color: var(--light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

/* Background Patterns */
.pattern {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.pattern-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-2 {
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: conic-gradient(from 45deg, var(--primary), var(--accent), var(--primary));
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    section {
        padding: 60px 40px;
    }

    .about-content,
    .contact-container {
        flex-direction: column;
    }

    .nav-vertical {
        right: 10px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 30px;
    }

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

    .logo {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.services-grid,
.contact-container {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Add these to your existing CSS */

/* Bootstrap Icons adjustments */
.bi {
    font-size: 1.2em;
    vertical-align: middle;
}

/* Navigation icons */
.nav-item .bi {
    font-size: 1.3em;
}

/* Service icons */
.service-icon .bi {
    font-size: 2.5em;
}

/* Social links */
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--gray);
    font-size: 1.3em;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

/* Form label icons */
.form-group label .bi {
    margin-right: 8px;
    color: var(--accent);
}

/* Button icons */
.btn .bi {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.btn:hover .bi {
    transform: translateX(3px);
}

.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--accent);
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Dynamic Year */
#year {
    font-weight: 600;
}

/* Hero Logo Styles */
.hero-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-logo {
    width: 250px;
    /* Adjust based on your logo */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(233, 69, 96, 0.3));
    /* Using your accent color */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.hero-logo:hover {
    transform: scale(1.05) rotateY(10deg);
    filter: drop-shadow(0 0 20px rgba(233, 69, 96, 0.5));
}

/* Optional animated glow effect */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.3;
    z-index: -1;
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.2;
    }
}

/* Case Studies Section */
.case-studies-section {
    background-color: #f9f9f9;
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Case Study Cards */
.case-study-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 30px;
    margin-right: 30px;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.case-study-highlight {
    border: 2px solid var(--accent);
}

.case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.case-text {
    padding: 3rem;
    position: relative;
}

.case-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: var(--accent);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.case-description {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Stats */
.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Features List */
.case-features {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.case-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--dark);
}

.case-features li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--accent);
}

/* Testimonial */
.testimonial {
    background: rgba(26, 188, 156, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 3px solid var(--accent);
}

.quote-icon {
    color: var(--accent);
    font-size: 1.5rem;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.testimonial blockquote {
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--primary);
}

.client-title {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Visuals Section */
.case-visuals {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-image {
    position: relative;
    border-radius: 12px;
    border-color: var(--accent);
    border-width: 2px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 50%;
    height: auto;
    display: block;
}

.image-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 1rem;
}

.image-label span {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.image-label .before {
    background-color: rgba(231, 76, 60, 0.9);
    color: white;
}

.image-label .after {
    background-color: rgba(26, 188, 156, 0.9);
    color: white;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.grid-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.03);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* Responsive */
@media (max-width: 1024px) {
    .case-content {
        grid-template-columns: 1fr;
    }

    .case-text {
        padding: 2rem;
    }

    .case-visuals {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 768px) {
    .case-stats {
        grid-template-columns: 1fr;
    }

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

    .case-study-card {
        margin-bottom: 3rem;
    }
}

/* Simplified Case Study Styles */
.case-logo-display {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.logo-container {
    text-align: center;
    max-width: 300px;
}

.brand-logo {
    width: 100%;
    height: auto;
    /* max-height: 200px; */
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    border: #e94560;
    border-width: 0.9rem;
}

.brand-logo:hover {
    transform: scale(1.75);
}

.logo-caption {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Adjustments for single-column layout */
@media (max-width: 768px) {
    .case-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-logo-display {
        order: -1;
        padding: 1.5rem;
    }

    .brand-logo {
        max-height: 150px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--light);
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-left: 30px;
    margin-right: 30px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(26, 188, 156, 0.05);
}

.faq-question span {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.show {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p,
.faq-answer ul {
    color: var(--gray);
    line-height: 1.7;
}

.faq-answer ul {
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    position: relative;
}

.faq-answer li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
}

.faq-cta p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-question {
        padding: 1.2rem;
    }

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

/* Brand Quiz Section */
.brand-quiz-section {
    background-color: var(--light);
    padding: 5rem 0;
    position: relative;
}

.quiz-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.quiz-progress {
    height: 6px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 3px;
    margin-bottom: 2.5rem;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.progress-text {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.9rem;
    color: var(--gray);
}

.quiz-question {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-question.active {
    display: block;
}

.quiz-question h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    text-align: center;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.quiz-option {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.quiz-option:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.1);
}

.quiz-option i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.quiz-option span {
    font-weight: 500;
    color: var(--dark);
}

/* Results Screen */
.quiz-results {
    display: none;
    text-align: center;
}

.result-content {
    max-width: 600px;
    margin: 0 auto;
}

#score {
    color: var(--accent);
    font-weight: 700;
}

.result-meter {
    height: 10px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 5px;
    margin: 2rem auto;
    max-width: 400px;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(to right, var(--accent), var(--highlight));
    border-radius: 5px;
}

.result-text {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.result-recommendations {
    background: rgba(26, 188, 156, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.result-recommendations h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

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

.result-recommendations li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: var(--dark);
}

.result-recommendations li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--accent);
}

.quiz-email-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
}

.quiz-email-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.quiz-email-form button {
    border-radius: 0 50px 50px 0;
    padding: 0.8rem 1.8rem;
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .quiz-container {
        padding: 2rem 1.5rem;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .quiz-email-form {
        flex-direction: column;
    }

    .quiz-email-form input {
        border-radius: 50px;
        margin-bottom: 1rem;
    }

    .quiz-email-form button {
        border-radius: 50px;
    }
}