/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #1E1B4B;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(198, 255, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(198, 255, 0, 0.6); }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1E1B4B 0%, #2D2B5B 100%);
    color: #D1C4E9;
    padding: 20px;
    z-index: 10000;
    border-top: 3px solid #C6FF00;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept {
    background: #C6FF00;
    color: #1E1B4B;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: #B3E600;
    transform: translateY(-2px);
}

.btn-learn-more {
    color: #D1C4E9;
    text-decoration: underline;
    padding: 10px 15px;
}

/* Header */
.header {
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #C6FF00;
    animation: slideInUp 0.8s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg {
    transition: all 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.05);
    animation: glow 2s infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #D1C4E9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C6FF00;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #C6FF00;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    gap: 20px;
}

.contact-phone, .contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D1C4E9;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-phone:hover, .contact-email:hover {
    color: #C6FF00;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #C6FF00;
    transition: all 0.3s ease;
}

/* Main Content */
.main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.4) contrast(1.2);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.85) 0%, rgba(45, 43, 91, 0.75) 50%, rgba(30, 27, 75, 0.9) 100%);
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(30, 27, 75, 0.6) 100%);
}

.hero-content {
    text-align: center;
    color: #D1C4E9;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #C6FF00;
    text-shadow: 0 0 20px rgba(198, 255, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #C6FF00 0%, #B3E600 100%);
    color: #1E1B4B;
    animation: pulse 3s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(198, 255, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #D1C4E9;
    border: 2px solid #D1C4E9;
}

.btn-secondary:hover {
    background: #D1C4E9;
    color: #1E1B4B;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: slideInUp 1.2s ease;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #C6FF00;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: #D1C4E9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #C6FF00;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #D1C4E9;
    max-width: 600px;
    margin: 0 auto;
}

/* Черный цвет для подзаголовков на светлом фоне */
.about .section-header p,
.advantages .section-header p,
.testimonials .section-header p {
    color: #000;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #F7F8FA;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    animation: slideInLeft 0.8s ease;
}

.about-text h3 {
    color: #1E1B4B;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #000;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-list {
    list-style: none;
}

.values-list li {
    color: #000;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C6FF00;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    animation: slideInRight 0.8s ease;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #1E1B4B 0%, #2D2B5B 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: #F7F8FA;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(198, 255, 0, 0.2);
    border-color: #C6FF00;
}

.service-card.featured {
    border: 3px solid #C6FF00;
    animation: glow 3s infinite;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #C6FF00;
    color: #1E1B4B;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.service-header h3 {
    font-size: 1.8rem;
    color: #1E1B4B;
    margin-bottom: 10px;
}

.service-price {
    font-size: 1.3rem;
    color: #C6FF00;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-image {
    margin-bottom: 20px;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #000;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C6FF00;
    font-weight: bold;
}

.service-description {
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: #F7F8FA;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-item h3 {
    color: #1E1B4B;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1E1B4B 0%, #2D2B5B 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #F7F8FA;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #1E1B4B;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C6FF00;
    box-shadow: 0 0 10px rgba(198, 255, 0, 0.3);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #C6FF00;
}

.checkbox-group label {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #000;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #1E1B4B;
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #F7F8FA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: #C6FF00;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    color: #1E1B4B;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999;
    font-size: 0.95rem;
}

.testimonial-rating {
    margin-top: 15px;
}

.stars {
    color: #C6FF00;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1E1B4B 0%, #0F0E2A 100%);
    color: #D1C4E9;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #C6FF00;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact a {
    color: #D1C4E9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #C6FF00;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #D1C4E9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #C6FF00;
    padding-left: 5px;
}

.opening-hours p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #D1C4E9;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .main {
        padding-top: 70px;
    }
    
    .hero {
        min-height: calc(100vh - 70px);
        padding: 60px 0 40px;
    }
    
    .hero-content {
        padding-top: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .service-card,
    .advantage-item,
    .testimonial-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: #F7F8FA;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease;
}

.legal-content h1 {
    color: #1E1B4B;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.update-date {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #C6FF00;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #1E1B4B;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid #C6FF00;
}

.legal-content h3 {
    color: #1E1B4B;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    font-weight: bold;
}

.legal-section p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    color: #333;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #1E1B4B;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #C6FF00;
}

.return-links {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Special sections for legal pages */
.cookie-preferences, .contact-disclaimer {
    background: linear-gradient(135deg, #1E1B4B 0%, #2D2B5B 100%);
    color: #D1C4E9;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.cookie-preferences h2, .contact-disclaimer h2 {
    color: #C6FF00 !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
}

.cookie-preferences p, .contact-disclaimer p {
    color: #D1C4E9 !important;
    margin-bottom: 15px;
}

.contact-disclaimer .contact-details {
    margin: 25px 0;
    padding: 20px;
    background: rgba(247, 248, 250, 0.1);
    border-radius: 10px;
}

.contact-disclaimer .contact-details p {
    margin-bottom: 10px;
}

.contact-disclaimer a, .cookie-preferences a {
    color: #C6FF00 !important;
    text-decoration: underline;
}

.contact-disclaimer a:hover, .cookie-preferences a:hover {
    color: #B3E600 !important;
}

.contact-disclaimer em {
    font-style: italic;
    opacity: 0.9;
}

/* Thank you page styles */
.thank-you-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1E1B4B 0%, #2D2B5B 100%);
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.thank-you-content {
    text-align: center;
    color: #D1C4E9;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.thank-you-icon {
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #C6FF00;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(198, 255, 0, 0.3);
}

.thank-you-message {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.9;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 2rem;
    color: #C6FF00;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    background: rgba(247, 248, 250, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(198, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #C6FF00;
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #C6FF00;
    color: #1E1B4B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #C6FF00;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step p {
    line-height: 1.6;
    opacity: 0.9;
}

.contact-info-box {
    background: rgba(247, 248, 250, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(198, 255, 0, 0.2);
    margin-bottom: 40px;
}

.contact-info-box h3 {
    color: #C6FF00;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D1C4E9;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #C6FF00;
    transform: translateY(-2px);
}

.return-home {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .return-links {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-content h1 {
        font-size: 2.2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .return-home {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .section-header,
    .about-text,
    .about-image,
    .service-card,
    .advantage-item,
    .testimonial-card {
        opacity: 0;
        animation: none;
    }
    
    .section-header.animate,
    .about-text.animate,
    .about-image.animate,
    .service-card.animate,
    .advantage-item.animate,
    .testimonial-card.animate {
        opacity: 1;
        animation: fadeInUp 0.8s ease forwards;
    }
} 