* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: #1f2933;
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background: #c89b3c;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.btn:hover {
    background: #b48a2f;
}

nav {
    background: #111;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 15px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #c89b3c;
}

.section {
    padding: 60px 0;
}

.section.gray {
    background: #f4f4f4;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #1f2933;
}

.contact-info {
    text-align: center;
    font-size: 1.1rem;
}

.contact-info a {
    color: #1f2933;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background: #1f2933;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 600px) {
    header h1 {
        font-size: 2.2rem;
    }
}
