.about-image-wrapper {
    width: 100%;
    height: min(50vh, 520px);
    overflow: hidden;
    background-color: #f3eee8;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 73%;
    display: block;
}

.about-section {
    background: #ffffff;
}

.about-text {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 20px 80px;
    text-align: left;
}

.about-lead {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 36px;
}

.about-text h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: #223a59;
    margin: 36px 0 12px;
    padding-left: 16px;
    border-left: 3px solid #b67a1c;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 0;    
    text-align: justify;
}

.about-subhead {
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #223a59;
    margin: 20px 0 10px;
}

.about-text ul.about-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-text ul.about-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
    text-align: left;
}

.about-text ul.about-list li:last-child {
    margin-bottom: 0;
}

.about-text ul.about-list li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b67a1c;
}

.about-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 44px;
    padding: 20px 24px;
    background: #faf8f3;
    border: 1px solid #ece5d8;
    border-radius: 12px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.about-note svg {
    width: 24px;
    height: 24px;
    color: #b67a1c;
    flex-shrink: 0;
}

.about-cta {
    margin-top: 40px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    background: #223a59;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn-about:hover {
    background: #2d4c74;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 58, 89, 0.18);
}

.btn-about .btn-arrow {
    display: flex;
    align-items: center;
}

.btn-about:hover .btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .about-image-wrapper {
        height: 300px;
    }

    .about-text {
        padding: 40px 20px 60px;
    }

    .about-lead {
        font-size: 1.3rem;
    }

    .about-text h2 {
        font-size: 1.45rem;
    }
}
