/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ddd;
    margin: 0;
    padding: 0;
}

h2 {
    font-family: 'Georgia', serif;
    color: #f3f3f3;
}

p {
    line-height: 1.6;
}

.secondary-description {
    margin-top: 10px;
    font-size: 16px;
    color: #aaa;
}

/* Navigation Styles */
header {
    text-align: center;
    padding: 20px 0;
    background-color: #1e1e1e;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    max-width: 600px;
    margin: auto;
}

nav ul li {
    margin: 0 30px;
}

nav ul li a {
    text-decoration: none;
    color: #f3f3f3;
    font-weight: bold;
    font-size: 18px;
}

.divider {
    color: #666;
}

/* Landing Styles */
.landing {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 700px;
    margin: auto;
}

.landing-image {
    max-width: 50%;
    border-radius: 10px;
}

.description {
    max-width: 45%;
}

.logo {
    width: 200px;
    display: block;
    margin: 0 auto 20px;
}

/* About Us Section */
#about {
    padding: 50px;
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.tab-section {
    margin-bottom: 20px; /* Space between tabs and content */
}

.tab-buttons {
    display: flex;
    justify-content: space-around;
    background-color: #333;
    border: 1px solid #444;
    margin-bottom: 10px;
    width: 100%;
}

.tab-buttons button {
    background-color: #333;
    color: #f3f3f3;
    border: none;
    flex: 1;
    padding: 10px;
    cursor: pointer;
    border-right: 1px solid #444; /* Dividers between buttons */
}

.tab-buttons button:last-child {
    border-right: none; /* Remove last divider */
}

.tab-buttons button:hover,
.tab-buttons button:focus {
    background-color: #555;
}

/* Layout for description and image */
.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.about-content img {
    width: 50%;
    border-radius: 10px;
    margin-right: 20px;
}

.tab-description {
    display: flex;
    align-items: center; /* Centers text vertically */
    justify-content: center; /* Centers text horizontally */
    text-align: left;
    width: 50%; /* Matches the image width */
}

#tab-description {
    font-size: 16px;
    color: #ddd;
    line-height: 1.8;
}

/* Contact Section */
#contact {
    padding: 50px;
    max-width: 700px;
    margin: auto;
}

.contact-box {
    background-color: #1e1e1e;
    padding: 20px;
    border: 1px solid #444;
    border-radius: 10px;
}

.contact-box label {
    display: block;
    margin-top: 10px;
}

.contact-box input, .contact-box textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 10px;
    background-color: #333;
    color: #f3f3f3;
    border: 1px solid #555;
    border-radius: 5px;
}

.contact-box button {
    background-color: #333;
    color: #f3f3f3;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}

.contact-box button:hover {
    background-color: #555;
}
