/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #87A96B;
    text-decoration: none;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #424242;
    background-color: #fff;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation */
.navbar {
    padding: 20px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #3C2415;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
    color: #87A96B;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #424242;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.nav-menu a:hover {
    color: #3C2415;
}

.phone-number {
    color: #3C2415;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-number i {
    font-size: 14px;
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #87A96B;
}

.find-store {
    color: #3C2415;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.find-store i {
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #424242;
}

/* Button Styles */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: #3C2415;
    color: white;
}

.btn-primary:hover {
    background: #2C1A0F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(60, 36, 21, 0.3);
}

.btn-outline {
    background: transparent;
    color: #3C2415;
    border: 2px solid #3C2415;
}

.btn-outline:hover {
    background: #3C2415;
    color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #3C2415;
}

.btn-hero {
    background: #87A96B;
    color: white;
    font-size: 18px;
    padding: 15px 45px;
}

.btn-hero:hover {
    background: #6F8E55;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 169, 107, 0.4);
}

.btn-large {
    padding: 16px 45px;
    font-size: 17px;
}

/* Hero Section with Background Image - FIXED PARALLAX */
.hero {
    position: relative;
    background-image: url('/media/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* No parallax scrolling */
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(60, 36, 21, 0.85) 0%, rgba(60, 36, 21, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-text {
    max-width: 600px;
    color: white;
}

.hero-title {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    font-weight: 700;
    color: #B8D4A8;
    font-size: 68px;
    display: block;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}
ul.hero-subtitle {
    margin-left: 20px;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features span {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features i {
    color: #B8D4A8;
    font-size: 14px;
}

/* Trust Section - IMPROVED MOBILE DESIGN */
.trust-section {
    background: linear-gradient(135deg, #F5F0E8, #E8E5D8);
    padding: 30px 0;
    border-bottom: 1px solid #D4C4A8;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.trust-content p {
    color: #6F4C3E;
    font-size: 16px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-text {
    font-size: 20px;
    font-weight: 600;
    color: #3C2415;
}

.stars {
    color: #D4A574;
    font-size: 18px;
}

.stars i {
    margin: 0 2px;
}

.rating-info {
    color: #6F4C3E;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 38px;
    color: #3C2415;
    margin-bottom: 50px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #F5F0E8, #E8E5D8);
    border-radius: 4px;
    padding: 4px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    flex: 1;
    font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
    color: #3C2415;
}

.tab-btn.active {
    color: #fff;
    background: #3C2415;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-info h3 {
    font-size: 30px;
    color: #3C2415;
    margin-bottom: 20px;
}

.service-info p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.service-info ul {
    list-style: none;
    margin-bottom: 35px;
}

.service-info li {
    padding: 12px 0;
    color: #555;
    padding-left: 30px;
    position: relative;
}

.service-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #87A96B;
    font-weight: bold;
    font-size: 18px;
}

.service-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #EEF2E8 100%);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.feature-card:hover .feature-image-wrapper img {
    transform: scale(1.1);
}

.feature-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: transform 0.5s ease;
}

.feature-content {
    position: relative;
    padding: 40px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.feature-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-content p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials .section-title {
    color: #3C2415;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: white;
    padding: 35px;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #87A96B;
}

.testimonial-item.featured {
    background: linear-gradient(135deg, #87A96B, #9CAF88);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(135, 169, 107, 0.2);
}

.testimonial-item.featured h4,
.testimonial-item.featured .author-name {
    color: white;
}

.testimonial-item.featured p {
    color: rgba(255,255,255,0.95);
}

.testimonial-item.featured .author-location {
    color: rgba(255,255,255,0.8);
}

.testimonial-item.featured .stars-rating {
    color: #FFD700;
}

.stars-rating {
    color: #D4A574;
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-item h4 {
    color: #3C2415;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.testimonial-item.featured .testimonial-footer {
    border-top-color: rgba(255,255,255,0.2);
}

.testimonial-footer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #3C2415;
    font-size: 15px;
}

.author-location {
    font-size: 13px;
    color: #999;
    margin-top: 2px;
}

/* Trust Reviews Section */
.trust-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F0E8, #E8E5D8);
}

.trust-logo {
    text-align: center;
    font-size: 24px;
    color: #3C2415;
    margin-bottom: 40px;
    font-weight: 600;
}

.trust-logo i {
    margin-right: 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 0;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #D4C4A8;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(60, 36, 21, 0.1);
    border-color: #87A96B;
}

.review-card:first-child {
    background: linear-gradient(135deg, #3C2415, #6F4C3E);
    color: white;
    border: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-title {
    font-size: 24px;
    font-weight: 600;
}

.review-stars {
    color: white;
}

.review-stars i {
    margin: 0 1px;
}

.review-stars-green {
    color: #87A96B;
    margin-bottom: 10px;
}

.review-stars-green i {
    margin: 0 1px;
}

.review-card h4 {
    color: #3C2415;
    margin-bottom: 10px;
}

.review-card p {
    color: #c2c2c2;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-text {
    opacity: 0.95;
}

.review-author {
    font-size: 13px;
    color: #999;
}

.trust-score {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3C2415, #2C1A0F);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.cta-buttons .btn-primary {
    background: #87A96B;
    color: white;
}

.cta-buttons .btn-primary:hover {
    background: #6F8E55;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 169, 107, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    opacity: 0.95;
}

.cta-feature i {
    font-size: 24px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #211309;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #87A96B;
}

.footer-logo-icon {
    font-size: 24px;
    color: #B8D4A8;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
    transform: scale(1.1);
}

.footer-logo h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #B8D4A8;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-logo p {
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-link {
    color: #87A96B;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #B8D4A8;
}

.footer-link i {
    font-size: 14px;
}

.separator {
    color: #666;
}

.footer-links {
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: #87A96B;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #B8D4A8;
    text-decoration: underline;
}

.footer-disclaimer {
    background: #0f0f0f;
    padding: 30px;
    border-radius: 5px;
    margin-top: 30px;
}

.footer-disclaimer h5 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #999;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Improved Mobile Trust Section */
    .trust-section {
        padding: 20px 0;
        background: linear-gradient(135deg, #3C2415 0%, #6F4C3E 100%);
    }
    
    .trust-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .trust-content p {
        color: white;
        font-size: 14px;
        margin-bottom: 5px;
        opacity: 0.9;
    }
    
    .rating {
        flex-direction: column;
        gap: 10px;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.25);
    }
    
    .rating-text {
        color: white;
        font-size: 24px;
    }
    
    .stars {
        color: #FFD700;
        font-size: 20px;
    }
    
    .rating-info {
        color: rgba(255,255,255,0.9);
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title span {
        font-size: 48px;
    }
    
    .hero-features {
        gap: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item.featured {
        transform: scale(1);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-tabs {
        flex-direction: column;
    }
}

/* ============================================
   ADDITIONAL STYLES FOR ALL PAGES
   ============================================ */

/* Page Hero Sections */
.page-hero {
    background: linear-gradient(135deg, #3C2415, #2C1A0F);
    padding: 100px 0 60px;
    color: white;
}

.page-hero-cyan {
    background: linear-gradient(135deg, #87A96B, #6F8E55);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.story-text h2 {
    color: #3C2415;
    font-size: 36px;
    margin-bottom: 20px;
}

.story-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(60, 36, 21, 0.95), rgba(60, 36, 21, 0.7), transparent);
    padding: 40px;
    text-align: center;
}

.story-image-overlay h3 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #87A96B;
}

.stat-card h3 {
    font-size: 42px;
    color: #3C2415;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-size: 16px;
}

.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #EEF2E8 100%);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.value-card i {
    font-size: 48px;
    color: #87A96B;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #3C2415;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #87A96B, #B8D4A8);
    margin: 0 auto 20px;
}

.team-member h4 {
    color: #3C2415;
    margin-bottom: 10px;
}

.team-role {
    color: #87A96B;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 14px;
    color: #666;
}

.faq-section {
    background: linear-gradient(135deg, #F5F0E8, #E8E5D8);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-left: 4px solid #3C2415;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    font-weight: 600;
    color: #3C2415;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 15px;
    color: #666;
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.careers-section {
    padding: 80px 0;
}

.careers-box {
    background: linear-gradient(135deg, #3C2415, #6F4C3E);
    padding: 60px;
    border-radius: 8px;
    color: white;
    text-align: center;
}

.careers-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.careers-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-form {
    background: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #3C2415;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #3C2415;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #87A96B;
}

.contact-info-box {
    background: linear-gradient(135deg, #F5F0E8, #E8E5D8);
    padding: 40px;
    height: fit-content;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    color: #3C2415;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item p {
    color: #666;
    line-height: 1.6;
}

.locations-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #EEF2E8 100%);
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: white;
    padding: 30px;
    border-left: 4px solid #87A96B;
}

.location-card h3 {
    color: #3C2415;
    margin-bottom: 15px;
}

.location-card p {
    color: #666;
    line-height: 1.6;
}

/* Rates Page Styles */
.rates-content {
    padding: 80px 0;
    background: #fff;
}

.rates-container {
    max-width: 900px;
    margin: 0 auto;
}

.rates-section {
    margin-bottom: 50px;
}

.rates-section h2 {
    color: #3C2415;
    font-size: 32px;
    margin-bottom: 25px;
}

.rates-section h3 {
    color: #87A96B;
    font-size: 24px;
    margin: 30px 0 20px;
}

.rates-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.rates-section ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.rates-section li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Legal Pages Common Styles */
.legal-content {
    padding: 80px 0;
    background: #fff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #3C2415;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D4C4A8;
}

.legal-section h3 {
    color: #6F4C3E;
    font-size: 20px;
    margin: 25px 0 15px;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-section li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.highlight-box {
    background: linear-gradient(135deg, #F5F0E8, #E8E5D8);
    border-left: 4px solid #3C2415;
    padding: 20px;
    margin: 30px 0;
}

.highlight-box h2,
.highlight-box h3 {
    color: #3C2415;
    margin-bottom: 15px;
}

.important-notice {
    background: #F4E4C1;
    border-left: 5px solid #3C2415;
    padding: 20px;
    margin: 30px 0;
}

/* Disclaimer Page Specific */
.disclaimer-box {
    background: linear-gradient(135deg, #F5F0E8, #E8E5D8);
    border: 2px solid #D4C4A8;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.disclaimer-box h3 {
    color: #3C2415;
    margin-bottom: 15px;
    font-size: 24px;
}

.legal-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.icon-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
}

.icon-box i {
    color: #87A96B;
    font-size: 24px;
    margin-top: 5px;
}

/* Responsible Lending Page Specific */
.responsible-content {
    padding: 80px 0;
}

.principle-card {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 5px solid #3C2415;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.principle-card h3 {
    color: #3C2415;
    font-size: 28px;
    margin-bottom: 20px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-box {
    background: linear-gradient(135deg, #F5F0E8, #E8E5D8);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.tip-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tip-box i {
    font-size: 48px;
    color: #87A96B;
    margin-bottom: 20px;
}

.tip-box h4 {
    color: #3C2415;
    margin-bottom: 15px;
}

.warning-box {
    background: #F4E4C1;
    border: 2px solid #6F4C3E;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    background: #3C2415;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.commitment-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #87A96B;
}

.commitment-card h4 {
    color: #87A96B;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Privacy Page Specific */
.privacy-content {
    padding: 80px 0;
    background: #fff;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    color: #3C2415;
    font-size: 32px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #D4C4A8;
}

.privacy-section h3 {
    color: #87A96B;
    font-size: 24px;
    margin: 30px 0 20px;
}

.info-box {
    background: linear-gradient(135deg, #F5F0E8, #E8E5D8);
    border-left: 5px solid #87A96B;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.info-box h4 {
    color: #87A96B;
    margin-bottom: 15px;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.privacy-table th {
    background: #3C2415;
    color: white;
    padding: 15px;
    text-align: left;
}

.privacy-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.privacy-table tr:hover {
    background: linear-gradient(135deg, #F5F0E8, #E8E5D8);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.right-card {
    background: white;
    padding: 25px;
    border: 2px solid #87A96B;
    border-radius: 8px;
    transition: transform 0.3s;
}

.right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.right-card h4 {
    color: #87A96B;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box {
    background: linear-gradient(135deg, #87A96B, #6F8E55);
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.contact-box h3 {
    color: white;
    margin-bottom: 20px;
}

/* Responsive Design for All Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }
    
    .story-section,
    .stats-grid,
    .values-grid,
    .team-grid,
    .contact-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-section h2,
    .privacy-section h2,
    .rates-section h2 {
        font-size: 24px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
}