:root {
    --white: #FFFFFF; /* Убедимся, что --white определен как белый */
    --font-headings: 'Georgia', serif; /* Пример шрифта для заголовков */
    --font-main: 'Arial', sans-serif; /* Пример основного шрифта */
    --primary-dark: #1a2b4c; /* Темно-синий */
    --primary-blue: #4a6a94; /* Средний синий */
    --accent-blue: #6a90c4; /* Светлый синий */
    --text-dark: #333333; /* Темный текст */
    --text-light: #666666; /* Светлый текст */
    --light-gray: #f8f8f8; /* Светло-серый фон */
    --transition-speed: 0.3s; /* Скорость перехода для анимаций */
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Предотвращает горизонтальную прокрутку */
}

.container {
    max-width: 1200px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto;
    margin-right: auto;
}

/* START: FINAL INTRODUCTION SECTION */

.introduction-section {
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--text-dark);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("https://img1.wsimg.com/isteam/stock/122219/:/rs=w:1920,m");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.introduction-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.introduction-logo {
    height: 150px;
    width: auto;
    margin-bottom: 20px;
}

.introduction-tagline {
    font-family: var(--font-headings);
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 100;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin: 0 0 20px 0;
}

.introduction-brand-name {
    font-family: var(--font-headings);
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 100;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

/* END: FINAL INTRODUCTION SECTION */

section {
    padding: 80px 0;
}
.section-title {
    font-family: var(--font-headings);
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 100;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 10px 35px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
    font-weight: 700;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.btn-secondary {
    color: var(--white);
    background-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center;
}

.about-card {
    flex: 1 1 400px;
    max-width: 500px;
    padding: 40px;
    margin: 15px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.12);
}

.about-card .card-title {
    font-family: var(--font-main);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.about-card .card-description p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-top: 0;
    text-align: justify;
}

/* Team Section */
.team-section {
    background-color: var(--light-gray);
}

.team-section .section-title {
    color: var(--primary-dark);
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center;
}

.team-card {
    flex: 1 1 400px;
    max-width: 450px;
    margin: 15px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.12);
}

.team-card .team-member-image img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.team-card-content {
    padding: 30px;
}

.team-card .member-name {
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.team-card .member-description p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-top: 0;
    text-align: justify;
}

/* Arbitration Specialists Section */
.arbitration-specialists-section {
    background-color: var(--light-gray);
    padding: 80px 0;
    text-align: center;
}

.arbitration-specialists-section .section-title {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.arbitration-specialists-section p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.arbitration-specialists-section .contact-us-button {
    display: inline-block;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.arbitration-specialists-section .contact-us-button:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-dark);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: var(--white);
    padding: 30px 0;
    text-align: center;
    color: var(--text-dark);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.site-footer .social-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.site-footer .social-links a {
    color: var(--primary-dark);
    font-size: 28px;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.site-footer .social-links a:hover {
    color: var(--accent-blue);
    transform: translateY(-3px);
}

.site-footer .social-links svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.site-footer .site-info p {
    font-size: 16px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 40px;
    }
    .about-card, .team-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .introduction-section {
        background-position: center bottom; /* Показываем низ изображения */
        background-attachment: scroll; /* Отключаем parallax для корректной работы */
    }
    .about-cards, .team-cards {
        margin: 0;
    }
    .about-card, .team-card {
        margin-left: 0;
        margin-right: 0;
        padding: 30px;
    }
}


/* ==========================================================================
   Contact Form 7 Styles
   ========================================================================== */

.contact-section .wpcf7-form p {
    margin-bottom: 20px;
}

.contact-section .wpcf7-form .wpcf7-form-control {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #5a7ea8;
    background-color: #3b547d;
    color: var(--white);
    font-size: 16px;
    font-family: var(--font-main);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-sizing: border-box;
}

.contact-section .wpcf7-form .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(74, 106, 148, 0.5);
}

.contact-section .wpcf7-form textarea.wpcf7-form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-section .wpcf7-form .btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.contact-section .wpcf7-form .btn:hover {
    background-color: var(--accent-blue);
    color: var(--white);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-section .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.contact-section .contact-info p a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-speed) ease;
}

.contact-section .contact-info p a:hover {
    color: rgba(255, 255, 255, 0.75);
}
