* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1D1D1D;
}

header{
    background-color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

#logo{
    font-weight: bold;
     color: #095364;
}

nav{
    display: flex;
    gap: 20px;
}

nav a{
    text-decoration: none;
    color: white;
    font-weight: 500;
}

nav a:hover{
    color: red;
}

#Contact{
    background-color: #ff6243;
    padding: 10px;
    border-radius: 3px;
    color: black;
}

#Contact:hover{
    background-color: white;
}
section{
    padding: 7% 10%;
}
#hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
}

.intro{
    max-width: 600px;
}

.intro h1{
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    margin-left: 20px;
}

.intro p{
    font-size: 2rem;
    color:white;
    margin-left: 20px;
}

.btn{
    margin-left: 20px;
    margin-top: 20px;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 5px;
}

.btn:hover{
    background-color: #ff4d00;
}

span{
    color: #095364;
    font-weight: bold;
}

.image{
    flex: 1;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.image img{
    width: 250px;
    padding: 10px;
}

footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    border-top: 1px;
   background-color: #111;
    color: #F0F8FF;
    padding: 60px;
    margin-top: 40px;
}