/* 
 * AUDITPRO - Financial Auditing Company Website
 * Tema: Neón Minimalista
 */

/* =========== RESET & BASICS =========== */
:root {
    /* Color Palette */
    --color-bg: #1A1F36;
    --color-bg-secondary: #2B2F3E;
    --color-accent: #A3FF12;
    --color-highlight: #FF6B6B;
    --color-text: #E4E7EC;
    --color-white: #FFFFFF;
    
    /* Spacing */
    --space-xs: 0.3rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Typography */
    --font-main: 'Arial', sans-serif;
    --font-size-sm: 0.8rem;
    --font-size-base: 1rem;
    --font-size-md: 1.2rem;
    --font-size-lg: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 5rem; /* For fixed header */
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-white);
}

ul, ol {
    list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: var(--font-size-xxl);
    text-align: center;
}

h2 {
    font-size: var(--font-size-xl);
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.2rem;
    background-color: var(--color-accent);
}

h3 {
    font-size: var(--font-size-lg);
    text-align: center;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

/* =========== BUTTONS =========== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: var(--font-size-base);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

.btn-primary:hover {
    background-color: #8EDC00;
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(163, 255, 18, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.btn-nav {
    background-color: var(--color-accent);
    color: var(--color-bg) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: var(--color-white);
    color: var(--color-bg) !important;
}

/* =========== HEADER =========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--color-bg-secondary);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo svg {
    width: 150px;
    height: 45px;
}

.main-nav {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 2rem;
}

.main-nav ul li a {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--color-accent);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-secondary);
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 1rem;
}

.mobile-menu ul li a {
    color: var(--color-text);
    font-size: var(--font-size-base);
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========== HERO SECTION =========== */
.hero {
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="none" stroke="%23A3FF12" stroke-opacity="0.2" stroke-width="2" d="M0,128L48,122.7C96,117,192,107,288,122.7C384,139,480,181,576,170.7C672,160,768,96,864,80C960,64,1056,96,1152,106.7C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(163, 255, 18, 0.3);
    transition: transform 0.3s ease;
}

.hero-image .main-image:hover {
    transform: scale(1.02);
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -5px;
    height: 10px;
    background-color: rgba(255, 107, 107, 0.3);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero p {
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-size: var(--font-size-md);
}

/* =========== ABOUT SECTION =========== */
.about {
    background-color: var(--color-bg-secondary);
    position: relative;
}

.about p {
    max-width: 800px;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.feature .icon {
    margin-bottom: 1rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.feature .icon .feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature:hover .icon .feature-image {
    transform: scale(1.05);
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--color-white);
    text-align: center;
}

.feature p {
    margin-bottom: 0;
    font-size: var(--font-size-base);
}

/* =========== SERVICES SECTION =========== */
.services {
    background-color: var(--color-bg);
    text-align: center;
}

.services p {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.card {
    background-color: var(--color-bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    width: 300px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--color-white);
    text-align: center;
}

.card .price {
    color: var(--color-accent);
    font-size: var(--font-size-md);
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.card.featured {
    border: 2px solid var(--color-accent);
    transform: scale(1.05);
}

.card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card .badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: var(--color-highlight);
    color: var(--color-white);
    padding: 0.3rem 2rem;
    transform: rotate(45deg);
    font-size: var(--font-size-sm);
    font-weight: bold;
}

/* =========== WHY US SECTION =========== */
.why-us {
    background-color: var(--color-bg-secondary);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.reason .number {
    position: relative;
    top: 0;
    left: 0;
    font-size: var(--font-size-lg);
    font-weight: bold;
    color: var(--color-accent);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 0.5rem;
}

.reason h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
    text-align: center;
}

.reason p {
    margin-bottom: 0;
}

/* =========== TESTIMONIALS SECTION =========== */
.testimonials {
    background-color: var(--color-bg);
    text-align: center;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background-color: var(--color-bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    max-width: 350px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial .quote {
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial .quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.3;
}

.testimonial .author {
    display: flex;
    align-items: center;
}

.testimonial .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid var(--color-accent);
}

.testimonial .author h4 {
    margin-bottom: 0.2rem;
    color: var(--color-white);
    font-size: var(--font-size-base);
}

.testimonial .author p {
    margin-bottom: 0;
    font-size: var(--font-size-sm);
    opacity: 0.7;
}

/* =========== FAQ SECTION =========== */
.faq {
    background-color: var(--color-bg-secondary);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.faq-item h3 {
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: var(--font-size-lg);
    color: var(--color-accent);
}

.faq-item.active h3::after {
    content: '−';
}

.faq-item .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .answer {
    height: auto;
    opacity: 1;
    margin-top: 1rem;
}

/* =========== CONTACT SECTION =========== */
.contact {
    background-color: var(--color-bg);
    text-align: center;
}

.contact p {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: var(--color-bg-secondary);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--color-white);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: var(--font-size-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(163, 255, 18, 0.2);
}

.form-check {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.form-check input {
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.form-check label {
    flex: 1;
}

.contact-form button {
    margin-top: 1rem;
    width: 100%;
}

/* =========== FOOTER =========== */
.main-footer {
    background-color: var(--color-bg-secondary);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-accent), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    text-align: center;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: var(--color-text);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--font-size-sm);
}

/* =========== LEGAL PAGES =========== */
.legal-page {
    padding: 5rem 0;
    min-height: 80vh;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--color-accent);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content {
    background-color: var(--color-bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    color: var(--color-white);
    margin-top: 2.5rem;
    font-size: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li, .legal-content ol li {
    margin-bottom: 0.5rem;
}

/* =========== THANKS PAGE =========== */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.thanks-content {
    background-color: var(--color-bg-secondary);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icon-success {
    margin-bottom: 2rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 3px solid var(--color-accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.success-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-content h1 {
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.thanks-info {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.thanks-info h2 {
    font-size: var(--font-size-md);
    margin-bottom: 1rem;
}

.thanks-info ol {
    padding-left: 1.5rem;
}

.thanks-info ol li {
    margin-bottom: 0.8rem;
}

.thanks-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* =========== COOKIE BANNER =========== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-secondary);
    padding: 1rem;
    z-index: 2000;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 1rem;
}

/* =========== ANIMATIONS =========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(163, 255, 18, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(163, 255, 18, 0.7);
    }
    100% {
        box-shadow: 0 0 5px rgba(163, 255, 18, 0.5);
    }
}

.feature:hover .icon svg {
    animation: pulse 1.5s infinite;
}

.card.featured {
    animation: glow 3s infinite;
}

/* =========== RESPONSIVE DESIGN =========== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .service-cards {
        gap: 1.5rem;
    }
    
    .card {
        width: 280px;
        padding: 2rem 1.5rem;
    }
    
    .card.featured {
        transform: scale(1.03);
    }
    
    .card.featured:hover {
        transform: scale(1.03) translateY(-10px);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 4rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .gallery-item {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
        height: 200px;
    }
    
    .hero {
        padding: 2rem 0 3rem;
    }
    
    .hero-content {
        flex-direction: column-reverse;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 350px;
    }
    
    .card.featured {
        transform: none;
        order: -1;
    }
    
    .card.featured:hover {
        transform: translateY(-10px);
    }
    
    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial {
        max-width: 100%;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 3.5rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
        height: 180px;
        margin-bottom: 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .main-header {
        padding: 0.3rem 0;
    }
    
    .logo svg {
        width: 120px;
        height: 36px;
    }
    
    .mobile-menu-toggle {
        width: 24px;
        height: 18px;
    }
    
    .thanks-content {
        padding: 2rem 1.5rem;
    }
    
    .thanks-buttons {
        flex-direction: column;
    }
}

/* JavaScript functionality for FAQ and mobile menu */
document.addEventListener('DOMContentLoaded', function() {
    // FAQ toggle
    const faqItems = document.querySelectorAll('.faq-item h3');
    
    faqItems.forEach(item => {
        item.addEventListener('click', () => {
            const parent = item.parentElement;
            const isActive = parent.classList.contains('active');
            
            // Close all FAQ items
            document.querySelectorAll('.faq-item').forEach(faq => {
                faq.classList.remove('active');
            });
            
            // Open clicked item if it wasn't active
            if (!isActive) {
                parent.classList.add('active');
            }
        });
    });
    
    // Mobile menu toggle
    const menuToggle = document.querySelector('.mobile-menu-toggle');
    const mobileMenu = document.querySelector('.mobile-menu');
    
    if (menuToggle && mobileMenu) {
        menuToggle.addEventListener('click', () => {
            mobileMenu.classList.toggle('active');
            
            // Toggle animation for hamburger icon
            const spans = menuToggle.querySelectorAll('span');
            spans.forEach(span => span.classList.toggle('active'));
        });
    }
}); 