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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    padding: 20px 40px;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 120px 40px;
    text-align: center;
    background: #f8f8f8;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #555;
}

.hero-button {
    display: inline-block;
    padding: 12px 30px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 400;
    transition: background 0.3s;
}

.hero-button:hover {
    background: #555;
}

/* Services Section */
.services {
    padding: 80px 40px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-item {
    text-align: center;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 20px;
}

.service-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .hero {
        padding: 80px 20px;
    }

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

    .tagline {
        font-size: 1.5rem;
    }

    .services {
        padding: 60px 20px;
    }

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