/* ===== Base Styles ===== */
:root {
    --primary-color: /*#2c3e50*/ #1B2D73;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar {
    background-color: var(--primary-color);
}

.navbar-brand {
    font-weight: 700;
    color: white !important;
}

.nav-item {
    font-size: 20px;
}
.btn:hover{color:#ffffff !important;}

/* ===== Banner Styles ===== */
.hero-section,
.policy-banner,
.terms-banner,
.disclaimer-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner-img.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.hero-section {
    padding: 100px 0;
}

.policy-banner,
.terms-banner,
.disclaimer-banner {
    padding: 80px 0;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.policy-title,
.terms-title,
.disclaimer-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* ===== Button Styles ===== */
.btn-cta {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Section Styles ===== */
.section-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.policy-content .section-title,
.terms-content .section-title,
.disclaimer-content .section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin: 30px 0 20px;
    padding-bottom: 10px;
}

.policy-content .section-title:after,
.terms-content .section-title:after,
.disclaimer-content .section-title:after {
    bottom: 0;
    left: 0;
    transform: none;
    width: 60px;
}

/* ===== Feature Styles ===== */
.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card {
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ===== Testimonial Styles ===== */
.testimonial-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin: 15px 0;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* ===== How It Works Styles ===== */
.how-it-works {
    background-color: var(--light-color);
    padding: 80px 0;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ===== CTA Section Styles ===== */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.guarantee-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    margin-top: 20px;
}

/* ===== Content Sections ===== */
.policy-content,
.terms-content,
.disclaimer-content {
    padding: 40px 0;
}

/* ===== Footer Styles ===== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

address a {color: #e74c3c !important; text-decoration:none !important;}
address a:hover {color: #e74c4e !important; text-decoration:underline !important;}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .policy-title,
    .terms-title,
    .disclaimer-title {
        font-size: 2rem;
    }
    
    .policy-banner,
    .terms-banner,
    .disclaimer-banner {
        padding: 60px 0;
    }
}