/* About Section Styles */
.block-about {
    position: relative;
    padding: 8rem 0;
    background-color: #FEF9ED;
    color: #5D524B;
    overflow: hidden;
    z-index: 10;
}

.about-container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

/* Left Column */
.about-left {
    position: relative;
}

.about-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #5D524B;
}

.about-title span {
    color: #A67C52;
    font-family: inherit;
    font-weight: 400;
}

.about-description {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #5D524B;
    margin-top: 3rem;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 3rem;
}

.about-list-item {
    display: flex;
    align-items: center;
    font-size: 1.45rem;
    opacity: 0.95;
}

.about-check {
    width: 20px;
    height: 20px;
    margin-right: 0.8rem;
    stroke: #A67C52;
    flex-shrink: 0;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    background-color: #A67C52;
    color: #FEF9ED;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    white-space: nowrap;
}

.about-btn:hover {
    background-color: #5D524B;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(93, 82, 75, 0.2);
}

.about-btn svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.about-btn:hover svg {
    transform: translateX(5px);
}

/* Right Column */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(93, 82, 75, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-stat-card:hover {
    background: #FFFFFF;
    border-color: #A67C52;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(166, 124, 82, 0.1);
}

.stat-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(166, 124, 82, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #A67C52;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #5D524B;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 1.25rem;
    opacity: 0.8;
}

/* Approach Section */
.approach-section {
    margin-top: 1rem;
}

.approach-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.approach-card {
    background: rgba(93, 82, 75, 0.03);
    border: 1px solid rgba(93, 82, 75, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.approach-card:hover {
    background: #FFFFFF;
    border-color: #A67C52;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.approach-icon {
    width: 40px;
    height: 40px;
    background: #A67C52;
    color: #FEF9ED;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-content h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #5D524B;
}

.approach-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 1.5rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 2.5rem;
    }
}

/* Full Width Approach Layout */
.approach-full-container {
    max-width: 1728px;
    margin: 6rem auto 0;
    padding: 0 4rem;
}

.approach-list {
    display: grid !important;
    /* Override flex */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.approach-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Make approach cards equal height */
.approach-card {
    height: 100%;
    flex-direction: column;
    /* Stack icon top */
    text-align: center;
    align-items: center;
}

.approach-content {
    text-align: center;
}

@media (max-width: 1200px) {
    .approach-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .approach-full-container {
        padding: 0 1.5rem;
        margin-top: 4rem;
    }

    .approach-list {
        grid-template-columns: 1fr;
    }
}