* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Bahnschrift, 'Segoe UI', sans-serif;
}

.header-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 70px;
    align-items: center;
}

.logo-container {
    margin-left: 20px;
    width: 160px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%; 
}

.links-header-list > a,
.dropdown > a {
    display: flex;
    align-items: center;
    height: 100%;
}

.close-btn {
    border: none;
}

.close-btn:hover {
    color: red;
}

.send-btn {
    background-color: #8BC34A;
    border: none;
    padding: 5px 20px;
    font-weight: 500;
}

.default-textarea {
    resize: none;
    font-size: 10pt;
}

.links-header-list {
    width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Bahnschrift, 'Segoe UI', sans-serif;
}

.links-header-list > a:hover {
    text-decoration: underline;
}

.text-photo-container {
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    text-align: left; 
    font-family: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;
}

.text-stats {
    font-family: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;
    color: white; 
    font-weight: bold;
}

body a {
    text-decoration: none;
    color: black;
    font-size: 10pt;
}

.partners-icon-section {
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    align-items: center; 
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

.photo-container {
    background-image: url('../assets/photo-main-img.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100% 700px;
    height: 700px;
}

.items-text-photo-container {
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
    width: 800px; 
    margin: 15% auto;
}

.photo-container {
    color: white;
    text-align: center;
}

.default-btn {
    width: 200px;
    border: none;
    padding: 5px 20px;
    background-color: black;
    color: white;
}

.default-btn:hover {
    cursor: pointer;
}

li {
    list-style-type: '- ';
}

.service-img-size {
    position: relative;
    background-size: cover;
    height: 200px;
    width: 375px;
}

.service-text-img {
    color: white;
    font-weight: bolder;
    text-align: center;
    width: 375px;
    top: 85px;
    position: absolute;
}

.default-container {
    max-width: 1200px; 
    width: 100%;
    margin: 30px auto;
}

.services-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.carousel-img {
    border-top-left-radius: 120px;
    border-bottom-right-radius: 120px;
    border: 20px solid rgb(183, 180, 180);
    min-height: 350px;
    max-height: 350px;
    width: 30%; 
    object-fit: cover;
}

.stats-container {
    background-image: url('../assets/фон.png');
    background-size: 100% 400px;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    display: flex; 
    justify-content: center; 
    align-items: center;
    margin-top: 100px; 
}

.text-stats-div {
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
    margin-top: 30px; 
    max-width: 1000px;
    width: 100%;
}

.stats-div {
    width: 100%;
    max-width: 1000px;
    height: 250px;
}

.stats-div p {
    margin: 0;
}

.footer-container {
    display: flex;
    flex-direction: row;
    max-width: 1440px;
    width: 100%;
    justify-content: space-between;
    margin: 150px auto 0 auto;
}

.footer-block {
    display: flex; 
    height: 120px; 
    flex-direction: column;
}

.footer-block p {
    margin: 0;
}

.footer-block a {
    font-size: 12pt;
}

.dropdown {
    display: inline-block;
    position: relative;
    height: 100%;
}

.dropdown-options {
    display: none;
    position: absolute;
    overflow: auto;
    background-color: rgb(247, 247, 247);
    width: 300px;
    height: 330px;
}

.dropdown:hover .dropdown-options {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.dropdown-options {
    padding: 10px;
}

.dropdown-options a {
    font-size: 12pt;
}

.line {
    width: 250px;
    height: 1px;
    margin: 0 auto;
    background-color: black;
}

.contacts-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    background-color: white;
    padding: 0 30px;
}

.contacts-section.active {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    max-height: 600px;
    padding: 30px;
}

.contacts-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contacts-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: white;
    width: 18px;
    height: 18px;
}

.contact-details h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-link {
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.contact-hours {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 3px;
}

.contact-address {
    color: #2c3e50;
    font-size: 0.95rem;
}

.privacy-container {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-family: 'Roboto', 'Segoe UI', sans-serif;
}

.privacy-container section {
    margin-bottom: 35px;
}

.privacy-container h2 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #000000;
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
}

.privacy-container h3 {
    color: #34495e;
    font-size: 18px;
    margin: 25px 0 10px 0;
    font-weight: 500;
}

.privacy-container p {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

.privacy-container ul {
    margin: 10px 0 15px 25px;
}

.privacy-container li {
    margin-bottom: 8px;
    line-height: 1.5;
    list-style-type: disc;
}

.privacy-container .highlight {
    background-color: #f0f8ff;
    padding: 2px 6px;
    border-radius: 3px;
    border-left: 3px solid #3498db;
    font-weight: 500;
}

.privacy-container .important {
    background-color: #fff8e1;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
    font-size: 14px;
}

.privacy-container .important p {
    margin-bottom: 0;
    color: #5d4037;
}

.privacy-container .contact-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0 30px 0;
    border-left: 4px solid #000000;
}

.privacy-container .contact-info h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
}

.privacy-container .contact-info p {
    margin-bottom: 10px;
    font-size: 15px;
}

.privacy-container .contact-info em {
    color: #666;
    font-size: 14px;
    display: block;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px;
    }
    
    .contacts-title {
        font-size: 1.6rem;
    }

    .privacy-container {
        padding: 20px;
        margin: 20px;
        box-shadow: none;
        border: 1px solid #eee;
    }
    
    .privacy-container h2 {
        font-size: 20px;
    }
    
    .privacy-container h3 {
        font-size: 18px;
    }
    
    .privacy-container .contact-info {
        padding: 20px;
    }

    .default-container {
        max-width: 300px;
    }

    .partners-icon-section {
        max-width: 400px;
        margin: 0 auto;
    }

    
}