/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1A1A1A;
    background-color: #F9F9F9;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0F1B2B;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #F2C94C;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #E63946;
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #F2C94C 0%, #E63946 100%);
    color: white;
    border: 2px solid #F2C94C;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E63946 0%, #F2C94C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 201, 76, 0.3);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0F1B2B;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-submit {
    background: linear-gradient(135deg, #F2C94C 0%, #E63946 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242, 201, 76, 0.4);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(5px);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0F1B2B 0%, #1A1A1A 100%);
    color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content h3 {
    color: #F2C94C;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-accept, .cookie-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: linear-gradient(135deg, #F2C94C 0%, #E63946 100%);
    color: white;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 201, 76, 0.3);
}

.cookie-decline {
    background: transparent;
    color: #F2C94C;
    border: 2px solid #F2C94C;
}

.cookie-decline:hover {
    background: #F2C94C;
    color: #0F1B2B;
}

.cookie-link {
    color: #F2C94C;
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0F1B2B 0%, #1A1A1A 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
}

.logo-link:hover {
    color: #F2C94C;
    text-decoration: none;
}

.logo svg {
    transition: transform 0.3s ease;
}

.logo-link:hover svg {
    transform: scale(1.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo-link:hover .logo-text {
    color: #F2C94C;
}

/* Navigation */
.nav {
    position: relative;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(242, 201, 76, 0.2);
    color: #F2C94C;
    text-decoration: none;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 60px;
        right: 0;
        background: linear-gradient(135deg, #0F1B2B 0%, #1A1A1A 100%);
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: all 0.3s ease;
        min-width: 200px;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0F1B2B 0%, #1A1A1A 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(242, 201, 76, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #F9F9F9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0F1B2B;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0F1B2B;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.about-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #F2C94C;
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 600;
    color: #0F1B2B;
}

.about-image {
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background: linear-gradient(135deg, #F9F9F9 0%, #F0F0F0 100%);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.approach-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0F1B2B;
}

.approach-card p {
    color: #666;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #F2C94C;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #F2C94C 0%, #E63946 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0F1B2B;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-content li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F2C94C;
    font-weight: bold;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E63946;
    text-align: center;
    background: linear-gradient(135deg, #F9F9F9 0%, #F0F0F0 100%);
    padding: 15px;
    border-radius: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #F9F9F9 0%, #F0F0F0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #F2C94C;
    position: absolute;
    top: -10px;
    left: -20px;
}

.testimonial-author h4 {
    color: #0F1B2B;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: linear-gradient(135deg, #F9F9F9 0%, #F0F0F0 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0F1B2B;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #F2C94C;
    box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.1);
}

.budget-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #F2C94C;
    background: rgba(242, 201, 76, 0.05);
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #F2C94C;
    cursor: pointer;
}

.radio-text {
    font-weight: 500;
    color: #0F1B2B;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #F2C94C;
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.9rem;
    color: #666;
}

.checkbox-text a {
    color: #F2C94C;
    text-decoration: underline;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: linear-gradient(135deg, #0F1B2B 0%, #1A1A1A 100%);
    padding: 30px;
    border-radius: 20px;
    color: white;
}

.contact-card h3 {
    color: #F2C94C;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    color: #F2C94C;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    color: white;
}

.contact-text a {
    color: white;
    text-decoration: underline;
}

.contact-text a:hover {
    color: #F2C94C;
}

.contact-image {
    text-align: center;
}

.contact-img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0F1B2B 0%, #1A1A1A 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #F2C94C;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #F2C94C;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F2C94C;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: #F2C94C;
    text-decoration: none;
}

.contact-info a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F1B2B 0%, #1A1A1A 100%);
    color: white;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-animation {
    margin-bottom: 40px;
}

.thanks-svg {
    animation: thanksPulse 2s ease-in-out infinite;
}

@keyframes thanksPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.circle-animate {
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    animation: drawCircle 1.5s ease-out forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

.checkmark-animate {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheckmark 1s ease-out 0.5s forwards;
}

@keyframes drawCheckmark {
    to { stroke-dashoffset: 0; }
}

.thanks-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #F2C94C;
}

.thanks-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #F9F9F9;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.thanks-details h3 {
    color: #F2C94C;
    margin-bottom: 20px;
}

.thanks-details ul {
    list-style: none;
    text-align: left;
}

.thanks-details li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.thanks-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.thanks-contact h3 {
    color: #F2C94C;
    margin-bottom: 15px;
}

.contact-urgent {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.contact-phone, .contact-email {
    background: rgba(242, 201, 76, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone:hover, .contact-email:hover {
    background: #F2C94C;
    color: #0F1B2B;
    transform: translateY(-2px);
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-avatar {
    margin-bottom: 20px;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F2C94C 0%, #E63946 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.team-role {
    color: #F2C94C;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-description {
    color: #666;
    font-size: 0.9rem;
}

.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F9F9F9 0%, #F0F0F0 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.return-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.return-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Кнопки в секции возврата на белом фоне */
.return-section .btn-secondary {
    background: transparent;
    color: #0F1B2B;
    border: 2px solid #0F1B2B;
}

.return-section .btn-secondary:hover {
    background: #0F1B2B;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #0F1B2B;
}

.legal-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.legal-card {
    background: #F9F9F9;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid #F2C94C;
}

.legal-card h2 {
    color: #0F1B2B;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-card h3 {
    color: #0F1B2B;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-card li {
    margin-bottom: 8px;
    color: #666;
}

.legal-card p {
    color: #666;
    line-height: 1.8;
}

.legal-card a {
    color: #F2C94C;
    text-decoration: underline;
}

.legal-card a:hover {
    color: #E63946;
}

.contact-info {
    background: rgba(242, 201, 76, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info strong {
    color: white;
}

.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
}

.cookie-table th {
    background: #F2C94C;
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: rgba(242, 201, 76, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .budget-options {
        gap: 10px;
    }
    
    .radio-option {
        padding: 12px;
    }
    
    .contact-urgent {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .return-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-card {
        padding: 20px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .thanks-text h1 {
        font-size: 2rem;
    }
    
    .approach-card,
    .service-card,
    .testimonial-card,
    .team-card,
    .advantage-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .thanks-details,
    .thanks-contact {
        padding: 20px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-popup,
    .btn,
    .hero-buttons,
    .contact-form,
    .return-buttons {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .legal-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
} 