﻿.about-section {
    padding: 60px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.about-image {
    flex-shrink: 0;
}

.about-image img {
    width: 375px;
    height: 225px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 225px;
}

.about-description {
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    line-height: 1.6;
    color: #666;
    font-size: 14px;
}

.about-description p {
    margin: 0 0 8px 0;
    text-indent: 2em;
}

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

.about-more {
    margin-top: 20px;
    text-align: right;
}

.more-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--mainColor);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background-color: #1a5490;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}