/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
header {
    background-color: #333;
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f39c12;
}

.menu-icon {
    display: none;
}

.about-hero {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.about-hero-content {
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #ccc;
    border-radius: 10px; /* Bezeled edges */
    margin: 20px auto;
    width: 80%;
    max-width: 800px; /* Ensure it doesn't get too wide */
    padding: 20px; /* Add some padding inside the box */
    background-color: #fff; /* Ensure the background is white */
}

.section {
    margin-bottom: 40px;
}

.team-member {
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 16px;
    color: #555;
}

/* Hero Section */
.hero {
    background-color: #333;
    color: #fff;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-content {
    padding: 25px;
    border-left: 5px solid slateblue;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-content .btn {
    padding: 10px 20px;
    background-color:slateblue;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.hero-content .btn:hover {
    background-color:lightblue;
}

.table-hero {
    display: table;
    width: 100%;
    height: 100%;
    align-items: center;
}

/* Services Section */
.services {
    padding: 50px 20px;
    background-color: #fff;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.services .btn {
    padding: 10px 20px;
    background-color:slateblue;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.services .btn:hover {
    background-color:lightblue;
}

.card {
    background-color: #f3f3f3;
    padding: 30px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100px;
    background-color: lightgray;
    border-radius: 5px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
    color: #555;
}

.box-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer Styles */
footer {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

footer p {
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: block;
        font-size: 28px;
        color: #fff;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .service-cards {
        flex-direction: column;
        gap: 20px;
    }
}