/* Services Page Styles */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #d4851c;
}

.services-header h1 {
    font-size: 2.5rem;
    color: #d4851c;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

/* Service Cards */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #d4851c;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4851c 0%, #b8731a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.service-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Partner Introduction */
.partner-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #d4851c;
}

.partner-intro h2 {
    color: #d4851c;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.partner-highlight {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #d4851c;
    margin-top: 25px;
}

.partner-highlight p {
    margin: 10px 0;
    line-height: 1.7;
}

/* Contact Highlight */
.contact-highlight {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #d4851c;
}

.contact-highlight h3 {
    color: #d4851c;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #d4851c;
}

.contact-card h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.contact-card p {
    margin: 10px 0;
    font-size: 1rem;
}

.contact-card a {
    color: #d4851c;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Lending Programs */
.lending-programs {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.lending-programs h2 {
    color: #d4851c;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
    border-bottom: 2px solid #d4851c;
    padding-bottom: 15px;
}

.program-details {
    margin-bottom: 30px;
    width: 100%;
}

.program-details h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
    width: 100%;
}

.benefit-item {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d4851c;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefit-item strong {
    color: #d4851c;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Example Deal */
.example-deal {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    border: 2px solid #d4851c;
    box-shadow: 0 4px 15px rgba(212, 133, 28, 0.1);
}

.example-deal h3 {
    color: #d4851c;
    margin-bottom: 25px;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: 2px solid #d4851c;
    padding-bottom: 10px;
}

.deal-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.deal-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease;
}

.deal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.deal-item:last-child {
    border: 2px solid #d4851c;
    background: linear-gradient(135deg, #d4851c 0%, #b8731a 100%);
}

.deal-item:last-child .deal-label,
.deal-item:last-child .deal-value {
    color: white;
}

.deal-label {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-value {
    color: #d4851c;
    font-weight: 700;
    font-size: 1.4rem;
    display: block;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-section h2 {
    color: #d4851c;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #d4851c;
}

.faq-item h3 {
    color: #d4851c;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    margin: 0;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #d4851c 0%, #b8731a 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-section p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 150px;
}

.cta-button.primary {
    background: white;
    color: #d4851c;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: white;
    color: #b8731a;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: transparent;
    color: #f0f0f0;
}

.cta-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
}

/* Services Lists - General Styles */
.services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.services-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
    line-height: 1.6;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li strong {
    color: #d4851c;
    font-weight: 600;
}

/* Services Offered and B2B Solutions */
.services-offered,
.b2b-solutions {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.services-offered h2,
.b2b-solutions h2 {
    color: #d4851c;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.services-offered .services-list,
.b2b-solutions .services-list {
    margin-top: 20px;
}

.services-offered .services-list li,
.b2b-solutions .services-list li {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.services-offered .services-list li strong,
.b2b-solutions .services-list li strong {
    color: #d4851c;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.why-choose-us h2 {
    color: #d4851c;
    margin-bottom: 20px;
    font-size: 1.8rem;
}



.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.service-option {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #d4851c;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.service-option h3 {
    color: #d4851c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-option p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    color: #d4851c !important;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #d4851c;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
    align-self: center;
    background: white;
    opacity: 1;
}

.service-link:hover {
    background: #d4851c !important;
    color: white !important;
    opacity: 1;
}

.contact-section {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.contact-section h2 {
    color: #d4851c;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: left;
}

.contact-info {
    margin: 25px 0;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #d4851c;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-info a {
    color: #d4851c;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        padding: 20px 15px;
    }
    
    .services-header h1 {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 15px;
        margin-top: 0;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .lending-programs {
        padding: 25px;
    }
    
    .lending-programs h2 {
        font-size: 1.6rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .example-deal {
        padding: 20px;
    }
    
    .deal-breakdown {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .deal-item {
        padding: 15px;
    }
    
    .deal-value {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 80%;
        max-width: 300px;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .deal-breakdown {
        grid-template-columns: 1fr;
    }
    
    .deal-item {
        padding: 15px;
    }
    
    .deal-value {
        font-size: 1.1rem;
    }
}                                  