/* styles.css */
:root {
    --primary: #ffd600;
    --black: #000000;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 80px;
    color: #333;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 30px;
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
}

/* Buttons */
.btn-warning {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--black);
    font-weight: 600;
}

.btn-warning:hover {
    background-color: #e6c100;
    border-color: #e6c100;
    color: var(--black);
}

.btn-outline-light:hover {
    color: var(--black);
}

.btn-lg {
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: var(--white);
}

.hero-section h1 {
    color: var(--black);
    line-height: 1.2;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-warning {
    background-color: var(--primary) !important;
}

/* Cards */
.card {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-card {
    background-color: var(--white);
    border-left: 4px solid var(--primary);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-card {
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Icons */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.icon-box-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* CTA Sections */
.cta-section {
    padding: 40px 0;
}

/* Accordion */
.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: rgba(255, 214, 0, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 214, 0, 0.3);
}

/* Step Numbers */
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Stars */
.stars {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* Scroll to Top Button */
#scrollToTopBtn {
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    z-index: 99;
}

#scrollToTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    #scrollToTopBtn {
        width: 40px;
        height: 40px;
        padding: 8px !important;
    }
}

/* Privacy Policy Specific Styles */
.privacy-policy h2 {
    color: #000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-policy h3 {
    color: #333;
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.privacy-policy ul {
    padding-left: 1.5rem;
}

.privacy-policy li {
    margin-bottom: 0.5rem;
}

.privacy-policy .card {
    margin-bottom: 2rem;
    border-radius: 8px;
}

.privacy-policy address {
    font-style: normal;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-policy .card-body {
        padding: 1.5rem;
    }
    
    .privacy-policy h2 {
        font-size: 1.3rem;
    }
}