* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background-color: white;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #333;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
}

.header .nav a:hover {
    color: #ff9800;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: #f4f4f4;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #333;
}

.hero-text p {
    margin: 1rem 0;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #e68900;
}

.hero-img {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.hero-img img {
    max-width: 100%;
    border-radius: 40px;
}

/* SERVICES */
.services {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: white;
    flex-wrap: wrap;
}

.service {
    flex: 1;
    min-width: 250px;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service:hover {
    transform: translateY(-5px);
}

.footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: white;
}