/* About Us Section - Exactly matching the provided screenshot */
.about-us-section {
    background: #751116; /* Updated to match the exact dark burgundy from screenshot */
    position: relative;
    padding: 80px 0 120px;
    color: white;
    overflow: hidden;
    margin-bottom: -1px; /* Prevent any gap with the next section */
}
.logo-about{
    width: 129px;
    height: 192px;
    opacity: 1;

}

/* Slanted bottom edge */
.slant-edge {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #751116;
    transform: skewY(-2deg);
    transform-origin: bottom left;
    z-index: 1;
}

.about-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.about-us-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column - Logo and Title */
.about-us-left {
    flex: 0 0 40%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 32px;
}

.about-us-logo-g {
    width: 129px; /* Adjusted to match the screenshot */
    height: 200px; /* Adjusted to match the screenshot */
    opacity: 1;
    margin-bottom: 15px;
    margin-top: -20px;
}

.about-us-company-name {
    font-size: 22px;
    font-weight: 600;
    font-family: 'montserrat', sans-serif;
    color: white;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 15px;
}

/* Right Column - Content */
.about-us-right {
    flex: 0 0 55%;
    padding-left: 40px;
    padding-top: 20px;
}

.about-us-text-content p {
    font-size: 16px;
    margin-top: 15px;
    font-family: 'montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: left;
    max-width: 540px;
    margin-right: 30px;

}

.about-us-text-content p:last-of-type {
    margin-bottom: 30px;
}

/* About Us Button */
.about-us-button-container {
    margin-top: 30px;
}

.about-us-cta-button {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(145deg, #D4AF37 0%, #FFD700 50%, #B8860B 100%);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.about-us-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    color: #000;
    background: linear-gradient(145deg, #E0BB3F 0%, #FFE030 50%, #C89A20 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-us-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-us-left {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }
    
    .about-us-right {
        flex: 0 0 100%;
        padding-left: 0;
    }
    
    .about-us-logo-g {
        font-size: 160px;
    }
    
    .about-us-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0 100px;
    }
    
    .about-us-logo-g {
        font-size: 140px;
    }
    
    .about-us-company-name {
        font-size: 20px;
    }
    
    .about-us-text-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 50px 0 80px;
    }
    
    .about-us-section .container {
        padding: 0 20px;
    }
    
    .about-us-logo-g {
        font-size: 120px;
    }
    
    .about-us-company-name {
        font-size: 18px;
    }
    
    .about-us-text-content p {
        font-size: 14px;
    }
    
    .about-us-cta-button {
        padding: 10px 25px;
        font-size: 12px;
    }
}
