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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.contact-info {
    display: flex;
    align-items: center;
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff5252;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 72px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Intro Section */
.intro {
    padding: 4rem 0;
    background-color: #fff;
}

.intro p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.services p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background-color: #fff;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.benefits ul {
    list-style-position: inside;
    margin: 1.5rem 0;
}

.benefits li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* How to Choose Section */
.how-to-choose {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.how-to-choose h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.how-to-choose ul {
    list-style-position: inside;
    margin: 1.5rem 0;
}

.how-to-choose li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Service Grid */
.service-grid {
    padding: 4rem 0;
    background-color: #fff;
}

.service-grid h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Tips Section */
.tips {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.tips h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.tips ul {
    list-style-position: inside;
    margin: 1.5rem 0;
}

.tips li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: #fff;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.faq-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background-color: #ff6b6b;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta .cta-button {
    background-color: white;
    color: #ff6b6b;
}

.cta .cta-button:hover {
    background-color: #f0f0f0;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.disclaimer {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.8;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    nav {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Bold Text for Readability */
h1, h2, h3 {
    font-weight: 700;
}

.cta-button {
    font-weight: 700;
}

strong {
    font-weight: 700;
} 