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

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

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

.header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #758a54;
    margin-bottom: 10px;
    position: relative;
}

.logo img {
    max-height: 160px;
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo::before {
    content: "Model Bridge - Software & Systems";
    display: block;
}

.logo:has(img)::before {
    display: none;
}

.tagline {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
}

.hero {
    background: linear-gradient(135deg, #364f20 0%, #97a76b 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #758a54;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #758a54;
}

.service-card h3 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 10px;
}

.book-me {
    font-weight: 700;
    color: #758a54;
}

.contact {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact h2 {
    color: #1e293b;
    margin-bottom: 15px;
}

.contact p {
    color: #64748b;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        max-height: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }
    
    .services {
        grid-template-columns: 1fr;
    }
}