﻿body {
    margin: 0;
    padding-top: 80px;
    background-color: #ffffff;
    overflow-x: hidden;
    color: #333;
    font-family: Arial, sans-serif;
}

hr {
    height: 2px;
    width: 1000px;
    background-color: #BFA315;
    margin: 40px auto;
    border: none;
}

.hr__short {
    width: 100px;
}

/*  HERO SECTION  */

.info-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    gap: 40px;
}

.info-page > div {
    flex: 1;
    max-width: 50%;
    padding: 60px;
}

.info-page img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info-page img:hover {
    transform: translateY(-6px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 35px 80px rgba(0, 0, 0, 0.18),
        0 60px 120px rgba(0, 0, 0, 0.15);
}

.info-page h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.info-page p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

.suburban__main-text {
    font-style: italic;
}

/*  CONTENT BLOCK  */

.support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.content {
    margin: 0; 
    font-size: 18px;
    line-height: 1.7;
}

.support__links {
    color: #0775AB;
    display: inline-block;
    margin-right: 15px;
}

.support__links:hover {
    text-decoration: underline;
}

.suburban__extra-text {
    margin-top: 40px;
    text-align: center;
    color: #666;
    padding: 10px 20px;
    border-radius: 20px;
    border-left: 4px solid #BFA315;
    border-right: 4px solid #BFA315;
    font-size: 20px;
}

/*  SERVICES  */

.services-section {
    background-color: white;
    border-radius: 10px;
    padding: 40px 60px;
    margin: 50px auto;
    max-width: 1100px;
}

.services-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.services-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #BFA315;
}

.services-text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.services-list li {
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 4px solid #BFA315;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    font-size: 18px;
    transition: 0.3s;
}

.services-list li:hover {
    background-color: #fff9e6;
    transform: translateX(5px);
}


@media (max-width: 992px) {

    .info-page {
        flex-direction: column;
        text-align: center;
        margin: 0;
    }

    .info-page > div {
        max-width: 100%;
        padding: 30px 20px;
    }

    .info-page img {
        display: none;
    }

    .support__container {
        padding: 0 20px;
    }

    .services-section {
        padding: 30px 20px;
    }

    .services-title {
        font-size: 26px;
    }

    .services-list li {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .info-page h1 {
        font-size: 24px;
    }

    .info-page p {
        font-size: 16px;
    }

    .services-title {
        font-size: 22px;
    }

    .services-text {
        font-size: 16px;
    }

    .services-list li {
        font-size: 15px;
        padding: 12px 15px;
    }
}
