/* ============================================
   BASE STYLES & VARIABLES
   ============================================ */

:root {
    --primary-color: #3B4D63;
    --dark-accent: #2C3E50;
    --light-accent: #4A90E2;
    --light-bg: #F5F7FA;
    --dark-text: #1F2D3D;
    --gray-text: #5C7080;
    --border-color: #DDE2E6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: white;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-accent);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--light-accent);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-accent);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--light-accent);
    color: white;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--dark-accent);
    color: white;
    transform: translateY(-2px);
}


/* ============================================
   Logo
   ============================================ */
.logo-link {
    display: block;
    /* 1. Робимо контейнер квадратним */
    width: 60px;        /* Діаметр вашого круга */
    height: 60px;       /* Повинно дорівнювати width */
    
    /* 2. Робимо контейнер круглим (головна властивість) */
    border-radius: 50%; /* Основна магія */
    overflow: hidden;   /* Обрізає все, що виходить за межі круга */
    
    /* 3. Налаштовуємо фонове зображення */
    background-image: url('../images/logo/logoTV.webp');
    background-size: cover;      /* Заповнює круг без порожніх місць */
    background-position: center; /* Центрує зображення */
    background-repeat: no-repeat;
    
    /* 4. Додаткові стилі */
    text-indent: -9999px;
    text-decoration: none;
    border: 2px solid #4a6bdf; /* Опціонально: рамка навколо круга */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Опціонально: тінь */
}
/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--light-accent);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 150px 0 100px;
    background-color: var(--light-bg);
    text-align: center;
}

.hero h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* ============================================
   CONTENT SECTIONS WITH IMAGES
   ============================================ */

/* Common Section Styles */
.wall-type-section,
.tv-mount-types,
.additional-services-block {
    padding: 80px 0;
}

.wall-type-section {
    background-color: var(--light-bg);
}

.tv-mount-types {
    background-color: white;
}

.additional-services-block {
    background-color: var(--light-bg);
}

/* Section with Image Layout */
.section-with-image {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: start;
}

.reverse-layout {
    grid-template-columns: 2fr 3fr;
}

.reverse-layout .section-content {
    order: 2;
}

.reverse-layout .section-image {
    order: 1;
}

/* Section Content */
.section-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Section Image */
.section-image {
    position: relative;
    top: 120px;                           /* Змініть це значення за потребою */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: fit-content;
}

.collage-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.section-image:hover img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: white;
}

.overlay-text {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Wall Types List */
.wall-types-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wall-type-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--light-accent);
}

.wall-type-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wall-type-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.wall-type-item p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Mount Types List */
.mount-types-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mount-type-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--light-accent);
}

.mount-type-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mount-type-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.mount-type-item p {
    color: var(--gray-text);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #f8fafc;
}

.service-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--light-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.service-text h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.service-text p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.4;
}



/* ============================================
   GALLERY CTA SECTION
   ============================================ */

.gallery-cta-section {
    padding: 80px 0;
    background-color: white;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.gallery-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.gallery-cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.gallery-cta-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--light-accent);
}

.gallery-cta-content p {
    color: var(--gray-text);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.gallery-cta-content .btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.gallery-cta-content .btn:hover {
    background-color: var(--light-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

/* ============================================
   RESPONSIVE STYLES FOR GALLERY CTA
   ============================================ */

@media (max-width: 768px) {
    .gallery-cta-section {
        padding: 60px 0;
    }
    
    .gallery-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .gallery-cta-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .gallery-cta-content .btn {
        padding: 12px 28px;
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-cta-section {
        padding: 50px 0;
    }
    
    .gallery-cta-content h2 {
        font-size: 1.6rem;
    }
}



/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--dark-accent);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

.gallery-container {
    padding: 150px 0 80px;
    background-color: white;
}

.gallery-container .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    font-size: 2.5rem;
}

.gallery-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--light-accent);
}

.gallery-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 24px;
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background-color: var(--light-bg);
    border-color: var(--light-accent);
}

.filter-btn.active {
    background-color: var(--light-accent);
    color: white;
    border-color: var(--light-accent);
    font-weight: 600;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--light-accent);
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
    user-select: none;
}

.prev-btn:hover, .next-btn:hover {
    color: var(--light-accent);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-container {
    padding: 150px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--light-accent);
}

.contact-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.contact-form-group {
    margin-bottom: 25px;
}

.contact-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-accent);
    font-size: 0.95rem;
}

.contact-label.required::after {
    content: ' *';
    color: #e74c3c;
}

.contact-input,
.contact-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--light-bg);
}

.contact-input:focus,
.contact-select:focus {
    border-color: var(--light-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
    background-color: white;
}

.contact-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232C3E50'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.contact-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.contact-radio-option {
    display: flex;
    align-items: center;
}

.contact-radio {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    accent-color: var(--light-accent);
}

.contact-radio-label {
    font-weight: normal;
    color: var(--gray-text);
    cursor: pointer;
    transition: color 0.2s ease;
}

.contact-radio:checked + .contact-radio-label {
    color: var(--dark-accent);
    font-weight: 500;
}

.contact-hint {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-top: 6px;
    font-style: italic;
}

.contact-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 6px;
    display: none;
}

.contact-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-top: 20px;
    background-color: var(--light-accent);
    border: none;
}

.contact-submit:hover {
    background-color: var(--dark-accent);
    transform: translateY(-2px);
}

.contact-success {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #a5d6a7;
    display: none;
    margin-top: 20px;
}

.contact-success-title {
    color: #2e7d32;
    margin-bottom: 10px;
}

.contact-success-text {
    color: #1b5e20;
    margin-bottom: 0;
}

/* ============================================
   MOBILE GALLERY BUTTON
   ============================================ */

@media (max-width: 768px) {
    .mobile-gallery-btn {
        display: flex;
        position: fixed;
        bottom: 25px;
        right: 25px;
        background-color: var(--light-accent);
        color: white;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 999;
        font-size: 22px;
        transition: all 0.3s ease;
    }

    .mobile-gallery-btn:hover {
        background-color: var(--dark-accent);
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }
}

@media (min-width: 769px) {
    .mobile-gallery-btn {
        display: none !important;
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet and Desktop Adjustments */
@media (max-width: 1024px) {
    .section-with-image {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .reverse-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .mount-types-list,
    .services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: auto;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 0 8px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 15px;
        border-radius: 4px;
        width: 100%;
        transition: all 0.2s ease;
    }
    
    .nav-links a:hover {
        background-color: var(--light-bg);
        color: var(--light-accent);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    /* Content Sections */
    .wall-type-section,
    .tv-mount-types,
    .additional-services-block {
        padding: 60px 0;
    }
    
    .section-with-image,
    .reverse-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reverse-layout .section-content,
    .reverse-layout .section-image {
        order: unset;
    }
    
    .mount-types-list {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .image-overlay {
        padding: 20px 15px 15px;
    }
    
    .overlay-text {
        font-size: 1.2rem;
    }
    
    /* Filter Buttons */
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .filter-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Gallery */
    .gallery-container {
        padding: 120px 0 60px;
    }
    
    .gallery-header h1 {
        font-size: 2rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .prev-btn, .next-btn {
        font-size: 35px;
        padding: 15px;
    }
    
    .close-btn {
        font-size: 35px;
        top: 20px;
        right: 20px;
    }
    
    /* Contact Form */
    .contact-container {
        padding: 120px 15px 60px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .wall-type-item,
    .mount-type-item,
    .service-item {
        padding: 15px;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .overlay-text {
        font-size: 1.1rem;
    }
    
    .gallery-container {
        padding: 100px 0 40px;
    }
    
    .gallery-header h1 {
        font-size: 1.8rem;
    }
    
    .gallery-description {
        font-size: 1rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .prev-btn, .next-btn {
        font-size: 30px;
        padding: 10px;
    }
    
    .close-btn {
        font-size: 30px;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
}
@media (max-width: 768px) {
    .tv-mount-types .reverse-layout {
        display: flex;
        flex-direction: column;
    }
    
    .tv-mount-types .section-image {
        order: 2; /* Картинка остання */
    }
    
    .tv-mount-types .section-content {
        order: 1; /* Текст перший */
    }
}

@media (max-width: 768px) {
    /* Зменшуємо відступ між текстом і картинкою всередині секції */
    .section-with-image {
        gap: 0px; /* Зменшуємо з 40px до 30px */
    }
    
    /* Збільшуємо відступ між секціями */
    .wall-type-section,
    .tv-mount-types,
    .additional-services-block {
        padding: 70px 0 80px; /* Зверху 70px, знизу 80px */
    }
    
    /* Або можна додати margin-bottom до кожної секції */
    .wall-type-section {
        margin-bottom: 40px;
    }
    
    .tv-mount-types {
        margin-bottom: 40px;
    }
    
    /* Додатково можна зменшити відступ під заголовком */
    .section-content h2 {
        margin-bottom: 15px; /* Зменшуємо з 20px */
    }
    
    .section-intro {
        margin-bottom: 20px; /* Зменшуємо з 30px */
    }
}
/* Замість top використовуйте margin для десктопу */
@media (min-width: 769px) {
    .section-image {
        top: 0; /* Прибираємо top */
        margin-top: 153px; /* Використовуємо margin замість top */
    }
}

@media (max-width: 768px) {
    .section-image {
        top: 0; /* На мобільних - без зсуву */
        margin-top: 20px; /* Маленький відступ */
    }
}












/* Додаткові стилі для умовних полів */
.conditional-field {
    transition: all 0.3s ease;
}

/* Стилі для секцій форми */
.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #4a6fa5;
}

.section-title {
    color: #4a6fa5;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Стилі для груп чекбоксів та радіокнопок */
.checkbox-group, .radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-option, .radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-checkbox, .contact-radio {
    width: 18px;
    height: 18px;
}

.contact-checkbox-label, .contact-radio-label {
    font-size: 1rem;
    color: #333;
}

/* Стилі для полів з помилками */
.error {
    border-color: #e

