/* About Page Styles */

.about-section {
    background-color: #ffffff;
    padding: 290px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.about-title {
    font-size: 48px;
    font-weight: 400;
    color: #727171;
    margin: 0 0 120px 0;
    letter-spacing: 5px;
}

.about-divider {
    width: 330px;
    height: 8px;
    background: linear-gradient(90deg, #7dc163 0%, #00a0ca 100%);
    margin: 0 auto 120px auto;
}

.about-content {
    margin-bottom: 60px;
}

.about-content:last-child {
    margin-bottom: 0;
}

.about-text {
    font-size: 34px;
    font-weight: 300;
    color: #727171;
    line-height: 2;
    margin: 0;
    letter-spacing: 1px;
}

.about-images {
    display: flex;
    width: 100%;
}

.about-image-item {
    flex: 1;
    overflow: hidden;
}

.about-image-item img {
    width: 100%;
    height: 630px;
    display: block;
    object-fit: cover;
}

.about-contact{
    padding: 80px 0 110px;
    background-color: #7691b8;

}

.about-contact .about-container{
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    padding: 0;
}
.about-contact-item{
    width: 49%;
}

.about-contact .about-container .about-contact-item:first-child img{
    display: block;
    margin: 0 auto;
    margin-top: 5%;
}

.about-contact-item h4{
    font-size: 36px;
    color: #fff;
    text-align: left;
    padding-left: 30px;
    border-left: 4px solid #fff;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 60px;
}
.about-contact-item ul li{
    list-style: none;
    padding-left: 35px;
    display: flex;
    margin-bottom: 25px;
}
.about-contact-item ul li p{
    font-size: 20px;
    color: #fff;
    margin-left: 20px;
    line-height: 32px;
}
.about-contact-item ul li p span{
    display: inline-block;
    width: 100px;
    margin-right: 10px;
        font-size: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 40px;
    }
    
    .about-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .about-divider {
        width: 150px;
        margin-bottom: 60px;
    }
    
    .about-content {
        margin-bottom: 50px;
    }
    
    .about-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 30px;
    }
    
    .about-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .about-divider {
        width: 120px;
        height: 3px;
        margin-bottom: 40px;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
    
    .about-text {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .about-images {
        flex-direction: inherit;
    }
    .about-image-item img{
        height: 160px;
    }
    .about-contact{
        padding: 20px 0 20px;
    }
    .about-contact .about-container{
        flex-direction: column;
    }
    .about-contact-item{
        width: 100%;
        text-align: left;
    }
    .about-contact-item img{
        height: 34px;
    }
    .about-contact-item h4{
        font-size: 20px;
        margin-bottom: 20px;
        padding-left: 20px;
        margin-top: 20px;
    }
    .about-contact-item ul li{
        padding-left: 0;
    }
    .about-contact-item ul li p{
        font-size: 16px;
        text-align: left;
    }
    .about-contact-item ul li p span{
        display: block;
    }
    .about-contact-item ul li:last-child{
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    .about-divider {
        width: 100px;
        margin-bottom: 30px;
    }
    
    .about-content {
        margin-bottom: 30px;
    }
    
    .about-text {
        font-size: 14px;
    }
}
