@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    scroll-behavior: smooth;
    margin: 0;
}

/*Header*/
header {
    width: 100%;
    padding: 5px 5px 8px 5px;
    box-sizing: border-box;

    border-bottom: 1px solid #eee;
}
header div {
    width: 70%;
    margin: auto;
    align-items: center;
    justify-content: space-between; 
    display: flex;
}
header a#contact {
    color: #111827; 
    text-align: center;
    font-size: 18px; 
    font-weight: 600;
    box-sizing: border-box;
    background: #5AE4A7;
    padding: 15px 25px;
    border-radius: 10px;  
    text-decoration: none;
    margin-top: 15px;
}
/*Hero*/
#main {
    display: flex;
    align-items: center;
    padding: 25px;
    box-sizing: border-box;
    width: 90%;
    gap: 20px;
    margin: 30px auto;
}

h1, h2, h3, h4 {
    font-family: "Poppins", sans-serif;    
}

p, label, select, a {
    font-family: "Inter", sans-serif;        
}
a:hover, input[type=submit]:hover {
    opacity: 0.8;
    text-decoration: none;
}
#first {
    width: 60%;
}
#first h1 {
    color: #111827;
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 5px;
}
#first h1 span {
    font-style: italic;
}
#first p {
    color: #52525B; 
    line-height: 1.5em;
    text-align: left;
    font-size: 22px;
}
#first a {
    color: #111827; 
    text-align: center;
    font-size: 18px; 
    font-weight: 600;
    box-sizing: border-box;
    background: #5AE4A7;
    padding: 15px 25px;
    border-radius: 10px;  
    text-decoration: none;
    margin-top: 15px;
}

#second {
    width: 40%;
    box-sizing: border-box;
    background: #D6F7E7;
    padding: 30px;
    border-radius: 20px;
    border: 3px #111827 dashed;
}
#second h2 {
    color: #111827;
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 5px;
}
#second label {
    color: #52525B; 
    line-height: 1.5em;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}
#second input[type=text], #second input[type=email], #second textarea {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    border: 1px #111827 solid;
    border-radius: 10px;
}

#second select {
    width: 100%;
    padding: 14px;
    border: 1px #111827 solid;
    border-radius: 10px;
    background-color: #ffffff;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 15px;
    color: #333;
}

::picker(select) {
    border: 2px solid #3b82f6;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

/* Style individual options */
option {
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* Style options on hover */
option:hover {
    background-color: #f3f4f6;
}
#second input[type=submit] {
    color: #5AE4A7; 
    text-align: center;
    font-size: 17px; 
    font-weight: 600;
    box-sizing: border-box;
    background: #111827;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;  
    cursor: pointer;
}

/*Footer*/
footer {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    border-top: 1px #eee solid;
    background-color: #111827;
}
footer p {
    color: #fff;
    font-size: 13px;
    margin: 7px;
}
footer a {
    color: #fff;
    transition: all ease 1s;
}
