<link rel="stylesheet" href="style.css">

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f8f8f8;
}

nav{
    background:#0A1F44;
    padding:10px;
    text-align:center;
}

nav a{
    color:#D4AF37;
    text-decoration:none;
    margin:0 15px;
    font-weight:bold;
}

nav a:hover{
    color:white;
}

header{
    background:#081C3A;
    color:white;
    text-align:center;
    padding:30px 20px;
}

.hero-content{
    max-width:600px;
    margin:auto;
}

.hero-content h1{
    font-size:60px;
    color:#D4AF37;
}

.hero-content p{
    color:white;
    font-size:22px;
}

.btn{
    display:inline-block;
    padding:12px 25px;
    margin:5px;
    background:#D4AF37;
    color:#081C3A;
    text-decoration:none;
    font-weight:bold;
    border-radius:6px;
}

.services-home{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:60px 20px;
    background:#f5f5f5;
    flex-wrap:wrap;
}

.box{
    background:white;
    width:320px;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    text-align:center;
}

.box h2{
    color:#081C3A;
}

.box a{
    display:inline-block;
    padding:10px 20px;
    background:#D4AF37;
    color:#081C3A;
    text-decoration:none;
    font-weight:bold;
    border-radius:6px;
}

.contact-container,
.form-container{
    max-width:600px;
    margin:4px auto;
    background:white;
    padding:3px;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.contact-container{
    max-width:600px;
    margin:40px auto;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    text-align:center;
    color:#081C3A;
}

.contact-container a{
    color:#D4AF37;
    text-decoration:none;
    font-weight:bold;
}

.contact-container a:hover{
    color:#081C3A;
}

.contact-container p{
    color:#081C3A;
}

.contact-container a{
    color:#D4AF37;
    text-decoration:none;
    font-weight:bold;
}

input,
select,
textarea{
    width:100%;
    padding:10px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:5px;
    box-sizing:border-box;
}

button{
    background:#D4AF37;
    color:#081C3A;
    border:none;
    padding:12px 25px;
    font-weight:bold;
    border-radius:6px;
    cursor:pointer;
}

.contact-container{
    max-width:600px;
    margin:0px auto;
    padding:0px;
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    text-align:center;
}

.contact-title{
    text-align:center;
    margin-top:15px;
}

.contact-title h1{
    color:#D4AF37;
    font-size:42px;
    margin-bottom:10px;
}

.contact-title p{
    color:#555;
}

@media (max-width:768px){

    .btn{
        display:block;
        width:80%;
        margin:10px auto;
    }

}

@media (max-width:480px){

    nav a{
        font-size:13px;
        margin:2px;
    }

}

.contact-form{
    max-width:600px;
    margin:10px auto;
    background:white;
    padding:3px;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
    box-sizing:border-box;
}

.contact-form button{
    background:#D4AF37;
    color:#081C3A;
    border:none;
    padding:12px 25px;
    border-radius:6px;
    font-weight:bold;
}

.success-message{
    max-width:600px;
    margin:20px auto;
    padding:5px;
    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
    border-radius:8px;
    text-align:center;
    font-weight:bold;
}
