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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    border-bottom: 3px solid #2c5aa0;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

header .tagline {
    font-size: 1.1rem;
    color: #b0b0b0;
    font-weight: 300;
}

header .tagline a {
    color: #6ba3ff;
    text-decoration: none;
}

header .tagline a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    min-height: 60vh;
}

section {
    padding: 60px 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

section h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c5aa0;
    font-weight: 600;
}

section p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Hero Section */
.hero {
    background-color: #f8f9fa;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.hero h2 {
    font-size: 2.2rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #5a5a5a;
}

/* About Section */
.about {
    background-color: #fff;
}

.company-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid #2c5aa0;
}

.company-info h3 {
    margin-top: 0;
}

.company-info p {
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background-color: #f8f9fa;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    background-color: #fff;
    text-align: center;
}

/* Policy Content */
.policy-content {
    background-color: #fff;
}

.policy-content h3 {
    margin-top: 40px;
}

.policy-content h3:first-of-type {
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 40px 0;
    text-align: center;
    border-top: 3px solid #2c5aa0;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #6ba3ff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer p {
    margin: 10px 0;
    font-size: 0.9rem;
}

.copyright {
    color: #808080;
}

.disclaimer {
    font-size: 0.85rem;
    color: #707070;
    font-style: italic;
    margin-top: 15px;
}

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

    section h2 {
        font-size: 1.6rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}
