.about-us-container{
    background-color: #FFFFFF !important;
    padding: 80px 24px;
    width: 100%;
    text-align: center;
}

.about-us {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.about-us-title{
    font-family: 'Otomanopee One', sans-serif;
    color: #000;
    font-size: 72px;
    text-align: center;
    margin-bottom: 60px;
}

.about-us-text{
    font-family: 'Open Sans', sans-serif;
    color: #333;
    font-size: 24px;
    text-align: center;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto 40px;
}



.note-text{
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 26px;
    text-align: center;
    color: #086863;
    margin: 60px auto;
    max-width: 1200px;
}

.note-text p {
    margin: 0;
    line-height: 1.6;
     font-size: 28px;
}

.note-text .underline {
    font-weight: 700;
    font-size: 28px;
    color: #086863;
}

.contact-button {
    display: inline-block;
    background-color: #569D99;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 40px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #086863;
}

.why-choose-container {
    background-color: #e4e0e0;
    padding: 80px 24px;
    width: 100%;
}

.why-choose-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-choose-image {
    flex: 1;
    max-width: 50%;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.why-choose-text {
    flex: 1;
}

.why-choose-title {
    font-family: 'Otomanopee One', sans-serif;
    color: #000;
    font-size: 48px;
    margin-bottom: 40px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
    position: relative;
    padding-left: 24px;
}

.why-choose-list li::before {
    content: "•";
    color: #086863;
    position: absolute;
    left: 0;
    font-size: 24px;
}

@media (max-width: 1024px) {
    .why-choose-content {
        flex-direction: column;
    }
    
    .why-choose-image {
        max-width: 100%;
    }
    
    .why-choose-title {
        font-size: 40px;
    }
}

.contact-section {
      background-color: #e4e0e0;
    padding: 80px 24px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Otomanopee One', sans-serif;
    font-size: 48px;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    fill: #086863;
}

.contact-text {
    color: #333;
}

.footer {
    background-color: #569D99;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 36px;
    }
    
    .contact-item {
        font-size: 20px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
    }
}