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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #f5f5f0;
}

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

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d2d2d;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6d6d6d;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(232, 223, 211, 0.8), rgba(212, 197, 179, 0.8)), url('deskimage.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #2d2d2d;
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 72px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    color: #2d2d2d;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #4d4d4d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-button {
    display: inline-block;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 15px 45px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(45,45,45,0.2);
}

/* Services Section */
.services {
    padding: 100px 20px;
    background-color: #ffffff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #fafaf8;
    padding: 2.5rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    grid-column: span 2;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.service-card:nth-child(5) {
    grid-column: 4 / span 2;
}

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

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.service-card p {
    color: #5d5d5d;
    line-height: 1.7;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Why Us Section */
.why-us {
    padding: 100px 20px;
    background-color: #f5f5f0;
}

.why-us h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 60px;
    color: #2d2d2d;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2d2d2d;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.why-card p {
    color: #5d5d5d;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
    font-weight: 400;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4d4d4d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.contact-button {
    display: inline-block;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 16px 50px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(45,45,45,0.2);
}

/* Footer */
footer {
    background-color: #2d2d2d;
    color: #ffffff;
    text-align: center;
    padding: 2rem 20px;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services h2,
    .why-us h2 {
        font-size: 1.5rem;
    }

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

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

    .service-card {
        grid-column: span 1 !important;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .services,
    .why-us,
    .contact {
        padding: 60px 20px;
    }
}