.about {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
}

.about-container:has(.about-image-box) {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-heading {
    position: relative;
    padding-left: 24px;
}

.about-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 6px;
    background: linear-gradient(180deg, #d4a537, #e8c368);
    border-radius: 4px;
}

.about-title {
    font-size: 38px;
    font-weight: 800;
    color: #0b132b;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.about-content {
    width: 100%;
}

.about-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 20px 40px rgba(11, 19, 43, 0.05);
    position: relative;
    overflow: hidden;
}

.about-quote-mark {
    position: absolute;
    top: -18px;
    right: 24px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    color: rgba(212, 165, 55, 0.1);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.about-text {
    font-size: 18px;
    font-weight: 400;
    color: #475569;
    line-height: 1.85;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-text::first-line {
    font-weight: 700;
    color: #0b132b;
}

.about-image-box {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(11, 19, 43, 0.12);
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-container,
    .about-container:has(.about-image-box) {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .about-title {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .about {
        padding: 60px 0;
    }
    
    .about-card {
        padding: 24px;
    }
}