    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: var(--font-family);
        font-size: 16px;
        line-height: 1.6;
        color: var(--text-dark);
        background: #ffffff;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    /* Header styles */
    .header-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-light);
        color: var(--bg-blue);
        transition: all 0.3s ease;
        text-decoration: none;
    }
    .header-icon:hover {
        background: var(--color-3);
        color: white;
    }
    /* Contacts Page Styles */
    .contacts-new-page {
        padding: 120px 0;
        background-color: var(--bg-light);
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }
    .contact-details-column {
        order: 1;
    }
    .contact-details-column .section-title {
        text-align: center;
        margin-bottom: 40px;
        font-size: 42px;
    }
    .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }
    .contact-info-icon {
        width: 50px;
        height: 50px;
        background: var(--color-3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
    }
    .contacts-text {
        font-size: 16px;
        line-height: 1.6;
    }
    .contacts-text strong {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
    }
    .contacts-text a {
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .contacts-text a:hover {
        color: var(--color-3);
    }
    .social-links-row {
        display: flex;
        gap: 15px;
        margin-top: 30px;
        justify-content: center;
    }
    .social-link-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bg-blue);
        transition: all 0.3s ease;
        text-decoration: none;
    }
    .social-link-circle:hover {
        background: var(--color-3);
        color: white;
    }
    .contact-form-column {
        order: 2;
    }
    .contact-form-card {
        background: #ffffff;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    }
    .form-title {
        font-size: 24px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 8px;
    }
    .form-subtitle {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 25px;
    }
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .form-group input, .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background: #ffffff;
        font-size: 14px;
        color: var(--text-dark);
        transition: border-color 0.3s ease;
        font-family: var(--font-family);
    }
    .form-group input:focus, .form-group textarea:focus {
        outline: none;
        border-color: var(--color-3);
    }
    .form-group input::placeholder, .form-group textarea::placeholder {
        color: var(--text-muted);
    }
    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }
    .form-privacy {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 10px;
        line-height: 1.5;
    }
    /* Contact Map Section */
    .contact-map-section {
        padding: 0;
    }
    .contact-map {
        width: 100%;
        height: 500px;
    }
    .contact-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
    /* Footer styles */
    .footer {
        background: var(--bg-dark);
        padding: 60px 0 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-content {
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 60px;
    }
    .footer-brand {
        max-width: 250px;
    }
    .footer-logo {
        font-size: 24px;
        font-weight: 700;
        color: var(--color-3);
        text-decoration: none;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
        display: inline-block;
    }
    .social-links {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }
    .social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    .social-link:hover {
        background: var(--color-3);
    }
    .copyright {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
    }
    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .footer-column h4 {
        font-size: 13px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    .footer-column ul {
        list-style: none;
    }
    .footer-column ul li {
        margin-bottom: 12px;
    }
    .footer-column ul li a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }
    .footer-column ul li a:hover {
        color: var(--color-3);
    }
    .footer-column ul li:not(:has(a)) {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }
    /* Responsive styles for contacts page */
    @media (max-width: 1024px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }
        .contact-details-column {
            order: 1;
        }
        .contact-form-column {
            order: 2;
        }
    }
    @media (max-width: 768px) {
        .contacts-new-page {
            padding: 100px 0 60px;
        }
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .contact-details-column .section-title {
            font-size: 32px;
        }
        .contact-form-card {
            padding: 30px 20px;
        }
        .contact-map {
            height: 400px;
        }
        .footer-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .footer-links {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 480px) {
        .contact-info-item {
            flex-direction: column;
            text-align: center;
            align-items: center;
        }
        .contact-info-icon {
            margin: 0 auto 10px;
        }
        .social-links-row {
            justify-content: center;
        }
        .contact-details-column .section-title {
            font-size: 28px;
        }
        .footer-links {
            grid-template-columns: 1fr;
        }
        .contact-map {
            height: 300px;
        }
    }