/* Підключення шрифту Montserrat */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

        #contact-page {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
            padding: 60px 20px;
            box-sizing: border-box;
        }

        #contact-page * {
            box-sizing: border-box;
        }

        .contact-page-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }

        .contact-page-contacts-box,
        .contact-page-map-box {
            background-color: #f9f9f9;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            flex: 1 1 300px;
        }

        .contact-page-contacts-box {
            max-width: 400px;
        }

        .contact-page-map-box {
            flex: 1 1 600px;
        }

        .contact-page-general-block {
            text-align: center;
            margin: 30px 0;
        }

        .contact-page-general-block h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .contact-page-general-block .general-phone {
            font-size: 18px;
            font-weight: 500;
            color: #0046b8;
            margin-bottom: 20px;
        }

        .general-separator {
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
        }

        .general-separator:before {
            content: "";
            width: 100%;
            height: 1px;
            background: #ccc;
            display: block;
            position: absolute;
            top: 50%;
            left: 0;
        }

        .general-separator span {
            background: #f9f9f9;
            padding: 0 10px;
            position: relative;
            z-index: 1;
            font-size: 14px;
            color: #666;
            font-style: italic;
        }

        .contact-page-section-title {
            font-size: 32px;
            color: #000000;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .contact-page-contact-details {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .contact-page-contact-section {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 20px;
            flex: 1 1 calc(50% - 20px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .contact-page-contact-section-title {
            font-size: 20px;
            color: #1d1d1d;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-page-contact-section-title i {
            margin-right: 10px;
        }

        .contact-page-contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-page-contact-item {
            display: flex;
            flex-direction: column;
            margin-bottom: 15px;
        }

        .contact-page-contact-name {
            font-size: 16px;
            font-weight: 500;
            color: #0046b8;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }

        .contact-page-contact-name i {
            margin-right: 8px;
        }

        .contact-page-contact-link {
            font-size: 14px;
            color: #0046b8;
            text-decoration: none;
            margin-left: 26px;
            display: flex;
            align-items: center;
        }

        .contact-page-contact-link i {
            margin-right: 8px;
        }

        .contact-page-contact-link:hover {
            color: #ff0000;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .contact-page-contact-name i,
        .contact-page-contact-link i {
            transition: transform 0.3s ease;
        }

        .contact-page-contact-name:hover i,
        .contact-page-contact-link:hover i {
            transform: scale(1.2);
        }

        .contact-page-contact-details,
        .contact-page-contact-section,
        .contact-page-contact-list,
        .contact-page-contact-item {
            text-align: left;
        }

        .contact-page-map-container {
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
        }

        .contact-page-map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Стилі форми */
        .contact-form-wrapper {
            max-width: 500px;
            margin: 40px auto;
            background: #ffffff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            position: relative;
            text-align: left;
        }

        .contact-form-row {
            display: flex;
            flex-direction: row;
            gap: 20px;
            margin-bottom: 20px;
        }

        .contact-form-group,
        .contact-form-subject,
        .contact-form-message {
            position: relative;
            margin-bottom: 20px;
        }

        .contact-form-group label,
        .contact-form-subject label,
        .contact-form-message label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .contact-form-group input[type="text"],
        .contact-form-group input[type="email"],
        .contact-form-subject input[type="text"],
        .contact-form-message textarea {
            width: 100%;
            padding: 12px 35px 12px 12px; /* Доданий відступ зправа під іконку */
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            color: #333;
            outline: none;
            transition: border-color 0.3s ease;
            line-height: 1.5;
        }

        .contact-form-group input[type="text"]:focus,
        .contact-form-group input[type="email"]:focus,
        .contact-form-subject input[type="text"]:focus,
        .contact-form-message textarea:focus {
            border-color: #007BFF;
        }

        .icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            transition: color 0.3s ease;
            font-size: 16px;
        }

        /* При фокусі інпута іконка змінює колір */
        .contact-form-group input[type="text"]:focus ~ .icon,
        .contact-form-group input[type="email"]:focus ~ .icon,
        .contact-form-subject input[type="text"]:focus ~ .icon,
        .contact-form-message textarea:focus ~ .icon {
            color: #007BFF;
        }

        .contact-form-button {
            margin-top: 20px;
        }

        .contact-form-button button {
            width: 100%;
            border: 1px solid #000;
            background: transparent;
            padding: 12px 20px;
            color: #000;
            font-size: 14px;
            border-radius: 4px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .contact-form-button button:hover {
            background: #286ec9;
            color: #fff;
            border-color: #286ec9;
        }

        @media (max-width: 991px) {
            .contact-page-container {
                flex-direction: column;
                align-items: center;
            }
            .contact-page-contacts-box,
            .contact-page-map-box {
                max-width: 100%;
            }
            .contact-page-map-container {
                height: 300px;
            }
        }

        @media (max-width: 767px) {
            .contact-page-contact-details {
                flex-direction: column;
            }
            .contact-page-contact-section {
                flex: 1 1 100%;
            }
            .contact-page-map-container {
                display: none;
            }
        }

        @media (max-width: 575px) {
            #contact-page {
                padding: 30px 10px;
            }
            .contact-page-section-title {
                font-size: 28px;
            }
            .contact-page-contacts-box {
                padding: 30px;
            }
            .contact-page-contact-section-title {
                font-size: 18px;
            }
            .contact-page-contact-name {
                font-size: 14px;
            }
            .contact-page-contact-link {
                font-size: 12px;
            }
        }