:root {
    --primary-color: #cf2b41;
    --secondary-color: #003623;
    --accent-color: #ffc700;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

.about-section,
.why-choose-section,
.services-section,
.contact-section {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.about-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    position: relative;
    line-height: 1.2;
    font-family: var(--heading-font);
    font-weight: var(--bold);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.lead-text {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: var(--medium);
    line-height: 1.4;
    font-family: var(--body-font);
}

.about-features {
    display: grid;
    gap: 2.5rem;
    margin: 4rem 0;
}

.about-feature {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 54, 35, 0.05);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 54, 35, 0.1);
    background: var(--white);
}

.about-feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    background: rgba(255, 199, 0, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-feature:hover i {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.feature-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: var(--heading-font);
    font-weight: var(--semibold);
}

.feature-content p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 1.1rem;
    font-family: var(--body-font);
    font-weight: var(--regular);
    opacity: 0.8;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 54, 35, 0.15);
    height: 90%;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 54, 35, 0) 0%, rgba(0, 54, 35, 0.2) 100%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 50%;
    text-align: center;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(207, 43, 65, 0.3);
    z-index: 2;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.about-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), #1d3a4d);
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-cta p {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .about-grid {
        gap: 4rem;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        padding: 1.5rem;
        bottom: 30px;
        right: 30px;
    }
    
    .experience-badge .years {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 6rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: 0;
        margin-bottom: 3rem;
        height: 400px;
    }
    
    .section-title {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .lead-text {
        text-align: left;
        font-size: 1rem;
    }
    
    .about-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
    }
    
    .about-feature i {
        margin-bottom: 1rem;
    }
} 