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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

/* Header / Hero Section */
.hero {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.company-name {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1.25rem;
    color: #cccccc;
    font-weight: 300;
}

/* Section Styles */
.section {
    padding: 60px 20px;
}

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

.section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 16px;
    max-width: 800px;
}

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

.about .container {
    max-width: 800px;
}

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

.services .container {
    max-width: 800px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.service-item {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Company Information Section */
.company-info {
    background-color: #ffffff;
}

.company-info .container {
    max-width: 800px;
}

/* Contact Section */
.contact {
    background-color: #f8f8f8;
}

.contact .container {
    max-width: 800px;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 16px;
}

.contact-info a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    transition: border-color 0.2s;
}

.contact-info a:hover {
    border-bottom-color: #666;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #cccccc;
}

.footer-note {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.25rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .section {
        padding: 40px 20px;
    }

    .section h2 {
        font-size: 1.75rem;
    }

    .section p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-item {
        padding: 24px;
    }

    .hero {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.875rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }
}
