:root {
    --green: green;
    --black: #130f40;
    --light-color: #666;
    --border: .1rem solid rgba(0, 0, 0, 1);
    --box-shadow: 0 .1rem 1rem rgb(255, 0, 0);
    --outline: .1rem solid rgba(0, 0, 0, 1);
    --orange: #FF7518;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f5f5f5;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: black;
    color: #fff;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 50px;
    margin-right: 10px;
}

header .navbar a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
}

header .navbar a.active {
    border-bottom: 2px solid orange;
}

header .search-container {
    display: flex;
    align-items: center;
}

header .search-container input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

header .search-container button {
    padding: 6px 10px;
    margin-left: 5px;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* About Us Section */
.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.image-container {
    margin-bottom: 30px;
    border: 5px solid orange;
}

.about-image {
    width: 100%;
    height: auto;
}

.about-text {
    text-align: center;
}

.about-text h1 {
    font-size: 36px;
    color: #333;
}

.about-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.learn-more-btn {
    padding: 10px 20px;
    background-color: orange;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.learn-more-btn:hover {
    background-color: #ff9f43;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .image-container {
        flex: 1;
        max-width: 45%;
    }

    .about-text {
        flex: 1;
        max-width: 45%;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .about-text h1 {
        font-size: 48px;
    }

    .about-text p {
        font-size: 20px;
    }
}
