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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Main Content */
main {
    background: white;
}

section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: #f9f9f9;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Hero Section */
.hero {
    background: white;
    text-align: center;
}

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

/* Services Section */
.services {
    background: #f9f9f9;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about {
    background: white;
}

.about p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.contact p {
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 0;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

    .tagline {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 40px 0;
    }

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