* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
.header {
    background: white;
    border-bottom: 3px solid #34495e;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 2rem;
    color: #34495e;
    font-weight: 300;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
    color: #34495e;
    border-bottom-color: #27ae60;
}

/* Main Content */
.main {
    min-height: calc(100vh - 160px);
}

.hero {
    background: linear-gradient(to right, #f8f9fa, white);
    padding: 5rem 0;
    border-bottom: 1px solid #eee;
}

.hero h2 {
    font-size: 3rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: #2c3e50;
    max-width: 700px;
}

.features, .services-grid {
    padding: 5rem 0;
}

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

.card {
    background: white;
    padding: 2.5rem;
    border-left: 4px solid #27ae60;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.card h3, .card h4 {
    color: #34495e;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

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

.mission {
    background: white;
    padding: 5rem 0;
    border-top: 1px solid #eee;
}

.mission h2 {
    text-align: center;
    color: #34495e;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    font-weight: 300;
}

.mission p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
    color: #555;
}

/* Services Specific */
.services-hero {
    background: #34495e;
    color: white;
    padding: 4rem 0;
}

.services-hero h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

.service-category {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.service-category:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.service-category h3 {
    color: #34495e;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-category > p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
}

/* Contact Specific */
.contact-hero {
    background: #27ae60;
    color: white;
    padding: 4rem 0;
}

.contact-hero h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: #34495e;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    background: #34495e;
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #27ae60;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h3 {
    color: #34495e;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 300;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-item h4 {
    color: #f39c12;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

/* Footer */
.footer {
    background: #34495e;
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    border-top: 3px solid #27ae60;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav ul {
        gap: 1.5rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}