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

body{
    background:#f4f4f4;
    color:#333;
}

header{
    background:#0077cc;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
    position:sticky;
    top:0;
}

.logo{
    font-size:28px;
    font-weight:bold;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    transition:.3s;
}

nav a:hover{
    color:yellow;
}

.hero{
    height:90vh;
    background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1500&q=80");
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
}

.hero h1{
    font-size:50px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
}

.btn{
    background:#ff9800;
    color:white;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-size:18px;
}

.btn:hover{
    background:#e68900;
}

.services{
    padding:70px 10%;
}

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

.cards{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
}

.card{
    background:white;
    width:300px;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.prices{
    padding:70px 10%;
}

.prices h2{
    text-align:center;
    margin-bottom:30px;
}

table{
    width:100%;
    border-collapse:collapse;
    background:white;
}

table th{
    background:#0077cc;
    color:white;
}

table th,table td{
    border:1px solid #ddd;
    padding:15px;
    text-align:center;
}

.contact{
    padding:70px 10%;
}

.contact h2{
    text-align:center;
    margin-bottom:30px;
}

form{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
}

input,textarea{
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:8px;
}

textarea{
    height:150px;
}

button{
    background:#0077cc;
    color:white;
    border:none;
    padding:15px;
    font-size:18px;
    border-radius:8px;
    cursor:pointer;
}

button:hover{
    background:#005fa3;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
}