*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Georgia', 'Times New Roman';
    background-color: #f6f4ef;
}

.container{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}
h1, h2, h3, .logo{
    font-family: 'Georgia', 'Times New Roman';
}
a{
    text-decoration: none;
    color: inherit;
}
/* HEADER SECTION STYLING */
.siteheader{
    background-color: #10233d;
    padding: 20px 0;
}
.headerinner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    color: white;
    font-size: 28px;
    letter-spacing: 0.5px;
}
.logo span{
    color: gold;
}
nav ul{
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a{
    color: white;
    font-family: serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: bold;
}
nav a:hover{
    color: gold;
}

/* HERO SECTION */
.hero{
    background-color: #10233d;
    color: white;
    padding: 100px 0;
    text-align: center;
}
.eyebrow{
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: gold;
    margin-bottom: 20px;
}
.hero h1{
    font-size: 44px;
    font-weight: normal;
    margin-bottom: 20px;
}
.herosub{
    font-family: sans-serif;
    font-size: 16px;
    color: #cfd6e0;
    margin-bottom: 32px;
}
.btn{
    display: inline-block;
    background-color: gold;
    color: #10233d;
    font-family: sans-serif;
    font-weight: bold;
    padding: 14px 32px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}
.btn:hover{
    background-color: #cfd6e0;
}

/* ABOUT SECTION */
.about{
    padding: 80px 0;
    text-align: center;
}
.about h2, .service h2, .contact h2{
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: gold;
}
.about p{
    max-width: 600px;
    margin: 0 auto;
    color: black;
    font-family: sans-serif;
}
/* SERVICES SECTIONS */
.service{
    background-color: white;
    padding: 80px 0;
    text-align: center;
}
.servicegrid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}
.servicecard p{
    font-family: serif;
    font-size: 14px;
    color: black;
}
.servicecard h3{
    font-size: 16px;
    margin-bottom: 12px;
    color: #10233d;
}
.servicecard{
    border-top: 3px solid gold;
    padding: 24px 0 0 0;
    border-radius: 10px;
}

/* contact section */
.contact{
    padding: 80px 0;
    text-align: center;
}
.contact p{
    font-family: sans-serif;
    color: black;
}
.contactdetail{
    margin-top: 40px;
    font-weight: bold;
    color: #10233d;
}

/* footer section */
.sitefooter{
    background-color: #10233d;
    color: white;
    text-align: center;
    padding: 24px 0;
    font-family: sans-serif;
    font-size: 13px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 700px){
    .headerinner{
        flex-direction: column;
        gap: 16px;
    }
    nav ul{
        gap: 20px;
    }
    .hero h1{
        font-size: 32px;
    }
    .servicegrid{
        grid-template-columns: 1fr;
    }
}