* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-white {
    background-color: #fff;
    color: #1e3a8a;
}

.btn-white:hover {
    background-color: #f0f9ff;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-dark {
    background-color: #1e3a8a;
    color: #fff;
}

.btn-dark:hover {
    background-color: #1e40af;
}

.btn-block {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/7464230/pexels-photo-7464230.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.875rem;
    color: #dbeafe;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-slogan {
    font-size: 2.25rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        margin-bottom: 3rem;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

.hero-phones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-phones a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.hero-phones a:hover {
    color: #dbeafe;
}

.phone-separator {
    color: #93c5fd;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(to top, #fff, transparent);
    z-index: 5;
}

/* ==================== TRUST SECTION ==================== */
.trust {
    background-color: #fff;
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: 2.25rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 48rem;
    margin: 0 auto;
}

.license-box {
    display: inline-block;
    background-color: #eff6ff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #1e3a8a;
    margin-top: 1rem;
}

.license-box p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
    border: 1px solid #dbeafe;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.5s ease;
}

.trust-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.75rem) scale(1.05);
    border-color: #2563eb;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.5s ease;
}

.trust-card:hover .trust-icon {
    transform: rotate(12deg) scale(1.2);
}

.trust-card h3 {
    font-size: 1.25rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trust-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-0.75rem);
    border-color: #2563eb;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(6deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose {
    background-color: #fff;
    padding: 5rem 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reason-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 5rem;
    height: 5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.reason-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.reason-card:hover::before {
    transform: scale(1.5);
}

.reason-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: all 0.5s ease;
}

.reason-card:hover .reason-icon {
    transform: rotate(12deg) scale(1.15);
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.reason-card p {
    color: #dbeafe;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.cta-banner {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-banner h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-banner p {
    font-size: 1.125rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .banner-buttons {
        flex-direction: row;
    }
}

/* ==================== SERVICE AREA SECTION ==================== */
.service-area {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.service-area::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 16rem;
    height: 16rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
}

.service-area::after {
    content: '';
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(3rem);
}

.service-area .section-header.light {
    position: relative;
    z-index: 10;
}

.service-area .section-header h2,
.service-area .section-header p {
    color: #fff;
}

.area-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.area-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 10;
}

.area-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.area-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.area-icon-small {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.area-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.area-card p {
    color: #dbeafe;
}

.area-contact {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.area-contact p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.area-phones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.area-phones a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.area-phones a:hover {
    color: #dbeafe;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
    padding: 5rem 0;
}

.contact .section-header {
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
}

.info-card h4 {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.phone-link {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #1e40af;
}

.license-info {
    font-weight: 600;
    color: #1e3a8a;
}

.benefits-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-box h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefits-box ul {
    list-style: none;
}

.benefits-box li {
    margin-bottom: 0.5rem;
}

/* ==================== CONTACT INFO SECTION ==================== */
.contact-info-section {
    margin-top: 3rem;
}

.contact-info-section h3 {
    font-size: 1.75rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ==================== CONTACT FORM ==================== */
.contact-form-wrapper {
    display: flex;
    justify-content: center;
}

.contact-form-wrapper-full {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.contact-form {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.contact-form-wrapper-full .contact-form {
    max-width: 100%;
}

.form-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.form-section-title {
    font-size: 1.25rem;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #2563eb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    ring: 2px;
    ring-color: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio Buttons */
.radio-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.radio-label:hover {
    border-color: #2563eb;
    background-color: #f0f9ff;
}

.radio-label input[type="radio"] {
    margin-right: 0.75rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}

.radio-label input[type="radio"]:checked + span {
    font-weight: 600;
    color: #1e3a8a;
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: #2563eb;
    background-color: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.radio-label span {
    flex: 1;
    color: #333;
    font-size: 0.95rem;
}

/* Checkboxes */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.checkbox-label:hover {
    border-color: #2563eb;
    background-color: #f0f9ff;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: #1e3a8a;
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    border-color: #2563eb;
    background-color: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-label span {
    flex: 1;
    color: #333;
    font-size: 0.95rem;
}

/* Date Picker Section */
.date-picker-section {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.date-picker-hint {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.date-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.date-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.date-input:last-child {
    margin-bottom: 0;
}

/* Button Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Two Column Layout for Desktop */
@media (min-width: 768px) {
    /* Radio buttons in 2 columns for compact groups (3 or fewer items) */
    .radio-group.compact {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Radio buttons in 2 columns for medium groups (4-5 items) */
    .radio-group.medium {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Checkboxes in 2 columns */
    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Date inputs in a row */
    .date-picker-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .date-picker-section .date-picker-hint {
        grid-column: 1 / -1;
    }

    .date-inputs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .date-inputs-grid .date-input {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    /* Full width for form sections */
    .form-section {
        padding: 2rem;
    }

    /* Three columns for checkboxes on large screens */
    .checkbox-group {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Two columns for radio groups with 5+ items */
    .radio-group.large {
        grid-template-columns: repeat(2, 1fr);
    }
}

.success-message {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 0.5rem;
    color: #166534;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-text {
    font-size: 0.85rem;
    color: #999;
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    .form-section {
        padding: 1rem;
    }

    .form-section-title {
        font-size: 1.125rem;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: #0f172a;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-license {
    color: #93c5fd;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.footer-phones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-phones a {
    color: #dbeafe;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-phones a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #64748b;
}

/* ==================== STICKY CALL BUTTON ==================== */
.sticky-call-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: #2563eb;
    color: #fff;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-call-btn:hover {
    background-color: #1d4ed8;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
}

.call-icon {
    font-size: 1.25rem;
}

.call-text {
    font-weight: 700;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .sticky-call-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .call-text {
        display: none;
    }
}

/* ==================== GALLERY SECTION ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    height: 200px;
}

.gallery-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-slogan {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

    .trust,
    .services,
    .why-choose,
    .contact,
    .service-area {
        padding: 3rem 0;
    }

    .cta-banner {
        padding: 2rem;
    }

    .cta-banner h3 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .reason-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-slogan {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-phones a {
        font-size: 1.25rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}
