/* Hero Button */
.hero-button {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.apply-now-btn {
    background-color: #BE930B;
    padding: 14px 30px;
    border-radius: 4px;
    overflow: hidden;
    color: #131313;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: background-color 0.3s ease;
}

.apply-now-btn:hover {
    background-color: #a88209;
}

/* About TLG Section */
.about-tlg-section {
    padding: 120px 0;
    min-height: 600px;
    background-image: url('/images/dealer/about-tlg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-tlg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-tlg-title {
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

.about-tlg-content {
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.80);
}

.about-tlg-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .about-tlg-section {
        padding: 80px 0;
    }
    
    .about-tlg-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* What TLG Dealers Say Section */
.dealers-say-section {
    padding: 100px 0;
    background-color: #F4F4F4;
}

.dealers-say-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.dealers-say-title {
    font-size: 36px;
    font-weight: bold;
    color: #1C1C1C;
    margin-bottom: 30px;
    text-align: center;
}

.gold-text {
    color: #BE930B;
}

.featured-testimonial {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
}

.featured-testimonial .quote-icon {
    position: absolute;
    top: -30px;
    left: -5px;
    z-index: 1;
}

.featured-testimonial .quote-icon svg {
    width: 67px;
    height: 58px;
}

.featured-testimonial-content {
    position: relative;
    z-index: 2;
}

.featured-testimonial-text {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 6px;
}

.featured-testimonial-author {
    color: rgba(28,28,28,0.70);
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.dealers-say-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.dealer-testimonial {
    flex: 1;
    width: 700px;
    display: flex;
    align-items: stretch;
}

.dealer-testimonial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.dealer-quote {
    background-color: white;
    padding: 0 70px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-text {
    color: #131313;
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;color: #131313;
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 12px;
}

.quote-descption {
    color: rgba(28,28,28,0.70);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 768px) {
    .dealers-say-section {
        padding: 80px 0;
    }
    
    .dealers-say-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .dealers-say-content {
        flex-direction: column;
        align-items: center;
    }
    
    .dealer-testimonial {
        max-width: 100%;
    }
    
    .dealer-quote {
        padding: 30px 20px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .dealer-testimonial img {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}