<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* FinSkill Academy - Main Stylesheet
   Created with Flat + Neumorphism style
   No JavaScript required - Pure CSS animations and interactions
*/

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary: #00B8D9;
    --accent: #FF6B6B;
    --background: #1C1C1E;
    --text: #F4F4F5;
    --mint: #3BE8B0;
    
    /* Shades for neumorphism */
    --light-shadow: rgba(255, 255, 255, 0.05);
    --dark-shadow: rgba(0, 0, 0, 0.3);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== RESET &amp; BASE STYLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style-position: inside;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) 0;
}

section {
    padding: var(--space-lg) 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: var(--space-sm) auto;
    border-radius: var(--radius-sm);
}

h3 {
    font-size: 1.5rem;
}

/* ===== BUTTONS ===== */
.cta-button, .service-button, .submit-button, .back-button, .cookie-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--text);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 
        5px 5px 10px var(--dark-shadow),
        -5px -5px 10px var(--light-shadow);
}

.cta-button:hover, .service-button:hover, .submit-button:hover, .back-button:hover, .cookie-button:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 
        7px 7px 15px var(--dark-shadow),
        -7px -7px 15px var(--light-shadow);
}

.cta-button:active, .service-button:active, .submit-button:active, .back-button:active, .cookie-button:active {
    transform: translateY(0);
    box-shadow: 
        inset 3px 3px 5px var(--dark-shadow),
        inset -3px -3px 5px var(--light-shadow);
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 28, 30, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
}

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

.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.main-nav a:hover::after {
    width: 80%;
}

.nav-cta {
    background-color: var(--primary);
    color: var(--text) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.nav-cta:hover::after {
    display: none;
}

/* Hamburger Menu for Mobile */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background-color: var(--text);
    height: 2px;
    width: 24px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
        align-items: center;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background);
        padding: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        transition-delay: 0s;
    }
    
    .main-nav a {
        display: block;
        padding: var(--space-sm) var(--space-md);
        width: 100%;
    }
    
    .nav-toggle:checked ~ .main-nav {
        height: auto;
        padding: var(--space-sm) 0;
    }
    
    .nav-toggle:checked ~ .main-nav li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        bottom: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    /* Apply transition delays for staggered animation */
    .nav-toggle:checked ~ .main-nav li:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-toggle:checked ~ .main-nav li:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-toggle:checked ~ .main-nav li:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .nav-toggle:checked ~ .main-nav li:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    .nav-toggle:checked ~ .main-nav li:nth-child(5) {
        transition-delay: 0.5s;
    }
    
    .nav-toggle:checked ~ .main-nav li:nth-child(6) {
        transition-delay: 0.6s;
    }
}

/* ===== MAIN CONTENT ===== */
main {
    margin-top: 70px; /* Header height */
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--background), #2A2A30);
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 232, 176, 0.05) 0%, rgba(0, 184, 217, 0.05) 25%, rgba(28, 28, 30, 0) 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-content .cta-button {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--background);
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: var(--space-md);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.neumorphic-image {
    width: 300px;
    height: 300px;
    border-radius: var(--radius-lg);
    background: url('../img/about.jpg') center center/cover no-repeat;
    box-shadow: 
        10px 10px 20px var(--dark-shadow),
        -10px -10px 20px var(--light-shadow);
    transition: all 0.3s ease;
}

.neumorphic-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        15px 15px 30px var(--dark-shadow),
        -15px -15px 30px var(--light-shadow);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .neumorphic-image {
        width: 250px;
        height: 250px;
        margin-top: var(--space-md);
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background-color: #222224;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.benefit-card {
    background-color: var(--background);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 
        8px 8px 16px var(--dark-shadow),
        -8px -8px 16px var(--light-shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 24px var(--dark-shadow),
        -12px -12px 24px var(--light-shadow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 184, 217, 0.1);
    box-shadow: 
        inset 4px 4px 6px var(--dark-shadow),
        inset -4px -4px 6px var(--light-shadow);
}

.expert-icon::before,
.flexible-icon::before,
.practical-icon::before,
.support-icon::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Icon placeholders - would be replaced with actual SVGs */
.expert-icon::before {
    background-color: var(--primary);
    mask: url('../img/expert.svg') no-repeat center / contain;
    -webkit-mask: url('../img/expert.svg') no-repeat center / contain;
}

.flexible-icon::before {
    background-color: var(--primary);
    mask: url('../img/flexible.svg') no-repeat center / contain;
    -webkit-mask: url('../img/flexible.svg') no-repeat center / contain;
}

.practical-icon::before {
    background-color: var(--primary);
    mask: url('../img/practical.svg') no-repeat center / contain;
    -webkit-mask: url('../img/practical.svg') no-repeat center / contain;
}

.support-icon::before {
    background-color: var(--primary);
    mask: url('../img/support.svg') no-repeat center / contain;
    -webkit-mask: url('../img/support.svg') no-repeat center / contain;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: var(--background);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background-color: #222224;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    position: relative;
    box-shadow: 
        8px 8px 16px var(--dark-shadow),
        -8px -8px 16px var(--light-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 24px var(--dark-shadow),
        -12px -12px 24px var(--light-shadow);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-md);
    text-align: left;
}

.service-features li {
    padding: var(--space-xs) 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: 'âœ“';
    color: var(--mint);
    position: absolute;
    left: 0;
}

.service-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-label {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--text);
    padding: 0.25rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom-left-radius: var(--radius-md);
}

.service-button {
    width: 100%;
    margin-top: var(--space-sm);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: #222224;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.testimonial-card {
    background-color: var(--background);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: 
        8px 8px 16px var(--dark-shadow),
        -8px -8px 16px var(--light-shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 24px var(--dark-shadow),
        -12px -12px 24px var(--light-shadow);
}

.testimonial-content {
    position: relative;
    padding: var(--space-sm) 0;
    margin-bottom: var(--space-md);
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    background: url('../img/avatar.jpg') center center/cover no-repeat;
    box-shadow: 
        3px 3px 6px var(--dark-shadow),
        -3px -3px 6px var(--light-shadow);
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.author-info p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: var(--background);
}

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

.faq-item {
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
    box-shadow: 
        5px 5px 10px var(--dark-shadow),
        -5px -5px 10px var(--light-shadow);
    overflow: hidden;
}

.faq-question {
    display: block;
    padding: var(--space-sm) var(--space-md);
    background-color: #222224;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: var(--space-md);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 var(--space-md);
}

.faq-toggle {
    display: none;
}

.faq-toggle:checked ~ .faq-question {
    background-color: var(--primary);
}

.faq-toggle:checked ~ .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: var(--space-md);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: #222224;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--background);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 
        10px 10px 20px var(--dark-shadow),
        -10px -10px 20px var(--light-shadow);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius-md);
    background-color: #2A2A30;
    color: var(--text);
    box-shadow: 
        inset 3px 3px 5px var(--dark-shadow),
        inset -3px -3px 5px var(--light-shadow);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 
        inset 4px 4px 6px var(--dark-shadow),
        inset -4px -4px 6px var(--light-shadow),
        0 0 0 2px var(--primary);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: var(--space-xs);
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.submit-button {
    width: 100%;
    padding: 0.75rem;
    margin-top: var(--space-md);
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    background-color: var(--background);
}

.contact-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.contact-info-card {
    background-color: #222224;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 
        8px 8px 16px var(--dark-shadow),
        -8px -8px 16px var(--light-shadow);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 24px var(--dark-shadow),
        -12px -12px 24px var(--light-shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 184, 217, 0.1);
    box-shadow: 
        inset 4px 4px 6px var(--dark-shadow),
        inset -4px -4px 6px var(--light-shadow);
}

.location-icon::before,
.phone-icon::before,
.email-icon::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Icon placeholders */
.location-icon::before {
    background-color: var(--primary);
    mask: url('../img/location.svg') no-repeat center / contain;
    -webkit-mask: url('../img/location.svg') no-repeat center / contain;
}

.phone-icon::before {
    background-color: var(--primary);
    mask: url('../img/phone.svg') no-repeat center / contain;
    -webkit-mask: url('../img/phone.svg') no-repeat center / contain;
}

.email-icon::before {
    background-color: var(--primary);
    mask: url('../img/email.svg') no-repeat center / contain;
    -webkit-mask: url('../img/email.svg') no-repeat center / contain;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #191919;
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-logo {
    flex-basis: 250px;
    flex-grow: 0;
    margin-right: var(--space-md);
}

.footer-logo img {
    height: 40px;
    margin-bottom: var(--space-sm);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    flex: 1;
    justify-content: space-around;
}

.footer-column {
    flex-basis: 150px;
    min-width: 150px;
}

.footer-column h4 {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
    color: var(--primary);
}

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

.footer-column li {
    margin-bottom: var(--space-xs);
}

.footer-column a {
    color: var(--text);
    opacity: 0.8;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 28, 30, 0.95);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: var(--space-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    flex-grow: 1;
}

.cookie-button {
    padding: 0.5rem 1rem;
    min-width: 120px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-button {
        width: 100%;
    }
}

/* ===== POLICY PAGES ===== */
.policy-section {
    padding: var(--space-xl) 0;
}

.policy-section h1 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    background-color: #222224;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 
        10px 10px 20px var(--dark-shadow),
        -10px -10px 20px var(--light-shadow);
}

.policy-content h2 {
    text-align: left;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.policy-content h2::after {
    margin-left: 0;
    margin-bottom: var(--space-md);
}

.policy-nav {
    text-align: center;
}

.back-button {
    display: inline-block;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
}

.cookie-table th, .cookie-table td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background-color: rgba(0, 184, 217, 0.1);
    font-weight: 600;
}

/* ===== THANKS PAGE ===== */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) 0;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: #222224;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 
        10px 10px 20px var(--dark-shadow),
        -10px -10px 20px var(--light-shadow);
}

.thanks-content h1 {
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.thanks-content p {
    margin-bottom: var(--space-md);
}

.thanks-content .cta-button {
    margin-top: var(--space-md);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        width: 95%;
    }
    
    section {
        padding: var(--space-md) 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .benefits-container,
    .services-container,
    .testimonials-container,
    .contact-info-container {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    .service-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: var(--space-md);
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-around;
    }
    
    .footer-column {
        margin-bottom: var(--space-md);
    }
    
    .policy-content {
        padding: var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: var(--space-md);
    }
} </pre></body></html>