/* TrustyHomeHelp - Trustworthy & Reliable Theme */
/* Classic navy blue and gold with trust-focused design elements */

:root {
    --primary-navy: #1a365d;
    --secondary-navy: #2c5282;
    --accent-gold: #d69e2e;
    --light-gold: #f7d794;
    --trust-blue: #3182ce;
    --background-light: #f7fafc;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-color: rgba(26, 54, 93, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background: rgba(214, 158, 46, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 70%, var(--trust-blue) 100%);
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="trustPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(214,158,46,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23trustPattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e6a731 100%);
    color: var(--primary-navy);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(214, 158, 46, 0.4);
    background: linear-gradient(135deg, #e6a731 0%, var(--accent-gold) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--trust-blue) 100%);
    margin: 1rem auto;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--background-light);
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.badge {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.badge h4 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.badge p {
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--background-light) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border-left: 5px solid var(--accent-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(214, 158, 46, 0.1) 0%, transparent 70%);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-left-color: var(--trust-blue);
}

.service-card:hover::before {
    top: -20%;
    right: -20%;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow-color);
    border-top: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-color);
    border-top-color: var(--trust-blue);
}

.feature h3 {
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.feature p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Home Warranty Section */
.warranty {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    position: relative;
}

.warranty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="warrantyPattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><polygon points="12.5,2 16,8 23,8 18,13 20,20 12.5,16 5,20 7,13 2,8 9,8" fill="rgba(214,158,46,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23warrantyPattern)"/></svg>');
    opacity: 0.2;
}

.warranty-content {
    position: relative;
    z-index: 2;
}

.warranty-info h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.warranty-info p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.warranty-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.warranty-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 158, 46, 0.3);
    transition: all 0.3s ease;
}

.warranty-item:hover {
    background: rgba(214, 158, 46, 0.1);
    transform: translateY(-5px);
}

.warranty-item h4 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.warranty-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item strong {
    color: var(--primary-navy);
}

.quote-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-color);
    border-top: 5px solid var(--accent-gold);
}

.quote-form h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--trust-blue);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.quote-form .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Confirmation Message */
.confirmation-message {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow-color);
    border-left: 5px solid var(--accent-gold);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-gold);
    font-family: serif;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px var(--shadow-color);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--accent-gold);
    font-weight: bold;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.8rem;
}

.footer-section h4 {
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(214, 158, 46, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges,
    .warranty-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .quote-form,
    .service-card,
    .feature,
    .testimonial {
        padding: 2rem;
    }
}

/*************Newsletter**************/

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

section.newsletter-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout */
.newsletter-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left Side (Benefits) */
.newsletter-benefits {
    flex: 1 1 50%;
}

.newsletter-benefits h2,
.newsletter-benefits h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-list {
    margin-top: 20px;
}

.benefit-item {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: background 0.3s;
}

.benefit-item:hover {
    background: #e6f0fa;
}

.benefit-item h3 {
    font-size: 18px;
}

.benefit-item p {
    font-size: 14px;
    color: #555;
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 40px;
}

.trust-indicators ul {
    list-style: disc inside;
    margin-top: 10px;
}

.trust-indicators li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

/* Right Side (Form) */
.newsletter-form-container {
    flex: 1 1 45%;
    background: #f7f9fb;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.newsletter-form-wrapper h2 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.newsletter-form-wrapper p {
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="date"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

small {
    display: block;
    margin-top: 6px;
    color: #777;
}

/* Custom Radio Buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #007BFF;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: #007BFF;
    border-radius: 50%;
}

/* Custom Checkboxes */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-option,
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"],
.consent-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #28a745;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after,
.consent-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 10px;
    border: solid #28a745;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Consent Text */
.consent-text {
    color: #444;
}

.consent-text a {
    color: #007BFF;
    text-decoration: underline;
}

/* Buttons */
.btn-primary {
    background: #007BFF;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Disclaimer */
.form-disclaimer {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}

/* Confirmation Message */
.confirmation-message {
    background: #e6ffe6;
    padding: 20px;
    border: 1px solid #b2ffb2;
    border-radius: 10px;
    margin-top: 30px;
}

.confirmation-content h3 {
    color: #28a745;
}

.confirmation-content ul {
    margin: 10px 0 20px 20px;
    list-style: disc;
    color: #444;
}

.confirmation-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 991px) {
    .newsletter-layout {
        flex-direction: column;
    }

    .newsletter-form-container {
        order: 2;
    }

    .newsletter-benefits {
        order: 1;
    }
}

@media (max-width: 600px) {
    .checkbox-group,
    .radio-group {
        gap: 8px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .newsletter-form-wrapper p {
        font-size: 14px;
    }
}

/************Privacy Page****************/

/* Reset & Base Styles */


/* Main Container */
.privacy-page {
    padding: 160px 20px;
    background-color: #ffffff;
}


/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eaeaea;
}

.page-header h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
    font-size: 16px;
    margin-bottom: 8px;
}

.page-header .last-updated {
    font-size: 14px;
    color: #888;
}

/* Privacy Content Sections */
.privacy-content .policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 12px;
}

.policy-section h3 {
    font-size: 18px;
    color: #333;
    margin: 20px 0 8px;
}

.policy-section p {
    margin-bottom: 12px;
    color: #444;
    font-size: 16px;
}

.policy-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
    color: #555;
}

.policy-section strong {
    color: #222;
    font-weight: 600;
}

/* Contact Details */
.contact-details p {
    margin-bottom: 8px;
}

.contact-details a {
    color: #007bff;
    text-decoration: underline;
}

/* Trust Commitment Styling */
.trust-commitment {
    background: #f1f9ff;
    border-left: 5px solid #007bff;
    padding: 25px 20px;
    border-radius: 8px;
}

.trust-commitment h2 {
    color: #007bff;
}

.trust-commitment ul li {
    margin-bottom: 10px;
}

.trust-commitment p:last-child {
    font-weight: bold;
    color: #0056b3;
    margin-top: 20px;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }

    .policy-section h2 {
        font-size: 20px;
    }

    .policy-section h3 {
        font-size: 16px;
    }

    .privacy-page {
        padding: 40px 15px;
    }
}

/****************Terms Of Use********************/



/* Main Container */
.terms-page {
    padding: 160px 20px;
    background-color: #ffffff;
}



/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.page-header h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    color: #555;
}

.page-header .last-updated {
    font-size: 14px;
    color: #888;
}

/* Terms Content */
.terms-content .policy-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.policy-section h2 {
    font-size: 24px;
    color: #004080;
    margin-bottom: 15px;
}

.policy-section h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #222;
}

.policy-section p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
}

.policy-section ul,
.policy-section ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li,
.policy-section ol li {
    margin-bottom: 10px;
    color: #555;
}

.policy-section strong {
    color: #000;
    font-weight: 600;
}

/* Contact Details */
.contact-details {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.contact-details strong {
    color: #000;
}

/* Trust Commitment Highlight */
.trust-commitment {
    background: #e6f2ff;
    padding: 25px 20px;
    border-left: 6px solid #0073e6;
    border-radius: 6px;
    margin-top: 40px;
}

.trust-commitment h2 {
    color: #0073e6;
}

.trust-commitment ul {
    margin-top: 10px;
}

.trust-commitment ul li {
    margin-bottom: 10px;
}

.trust-commitment p:last-child {
    font-weight: bold;
    margin-top: 20px;
    color: #004080;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }

    .policy-section h2 {
        font-size: 20px;
    }

    .policy-section h3 {
        font-size: 16px;
    }

    .terms-page {
        padding: 40px 15px;
    }
}

