/* Only one stylesheet for all your pages */
body {
    background: #000000;
    color: #ffffff;
    margin: 0;
    font-family: "Rubik", Arial, sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #425A64;
    color: #ffffff;
    font-family: "Rubik", Arial, sans-serif;
}
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar img {
    width: 35px;
    height: 35px;
    border: 2px solid #ffffff;
    border-radius: 10px;
}
.navbar nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
}

.hero {
    background-image: url("images/image22k.png");
    background-size: cover;
    background-repeat: no-repeat;
    margin: 20px;
    padding: 60px 20px;
    border-radius: 10px;
    text-align: center;
}

h2.section-title {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
    position: relative;
}
h2.section-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: #F3BF6B;
    margin: 8px auto 0;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.card {
    width: 220px;
    height: 260px;
    border-radius: 10px;
}

 .contact-box {
    background: #4E8C99;
    margin: 20px auto;
    width: 80%;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.input-row {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
}
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 22%;
}
.form-group label {
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.contact-box input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    background: #425A64;
    color: #ffffff;
}
.contact-box button {
    padding: 10px 30px;
    background: #F3BF6B;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    width: 50%;
}

footer {
    background: #4E8C99;
    padding: 15px;
    text-align: left;
    color: #ffffff;
    border-radius: 10px;
    width: 90%;
    margin: 40px auto;
    font-family: "Rubik", Arial, sans-serif;
}

@font-face {
    font-family: "Rubik";
    src: url("fonts/Rubik-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}
@font-face {
    font-family: "Rubik";
    src: url("fonts/Rubik-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
}