/* General reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Calibri', Arial, sans-serif;
    background-color: #f9f9f9;
}

/* Navigation Menu */
.navbar {
    background-color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-right: 20px;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #ff9800;
}

/* Main Content */
.container {
    max-width: 600px;
    margin: 20px auto; /* Reduced margin for less space above */
    padding: 15px;
    box-sizing: border-box;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Title */
.title {
    font-size: 2rem; /* Slightly smaller font */
    color: #333;
    text-align: center;
    margin-bottom: 15px; /* Reduced margin */
}

/* Intro Text */
.intro {
    font-size: 1rem; /* Slightly smaller font */
    line-height: 1.5;
    color: #555;
    text-align: center;
    margin-bottom: 20px; /* Reduced margin */
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced gap between fields */
}

.contact-form label {
    font-size: 0.9rem; /* Slightly smaller font */
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px; /* Reduced padding */
    font-size: 0.9rem; /* Slightly smaller font */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff9800;
}

.contact-form button {
    padding: 8px 15px; /* Reduced padding */
    font-size: 1rem;
    color: white;
    background-color: #ff9800;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #e68900;
}
/* White Rectangle */
.white-rectangle {
    width: 100%; /* Full width */
    height: 150px; /* Height of the rectangle */
    background-color: #ffffff; /* White color */
    margin-top: 20px; /* Space above the rectangle */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for effect */
    border-radius: 10px; /* Optional rounded corners */
}
