/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(236, 237, 239); /* Light grayish blue background for body */
    color: rgb(45, 52, 54); /* Dark text color */
}

h1, h2, h3 {
    margin: 0;
}

a {
    text-decoration: none;
    color: rgb(52, 152, 219); /* Soft blue for links */
}

/* Header Section */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(236, 237, 239); /* Match the background of the main section */
    padding: 10px 20px;
    color: rgb(45, 52, 54); /* Dark text in header */
}

header .logo img {
    height: 40px;
    margin-right: 10px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: rgb(45, 52, 54); /* Dark text for navigation links */
    font-weight: bold;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgb(116, 148, 159), rgb(209, 163, 140)); /* Gradient from color1 to color2 */
    color: rgb(253, 254, 254); /* Light text on hero */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.hero h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero .cta-button {
    display: inline-block;
    background-color: rgb(209, 163, 140); /* Soft warm beige for CTA buttons */
    color: rgb(253, 254, 254); /* Light text for buttons */
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

/* Main Content Section */
main {
    padding: 50px 20px;
    background-color: rgb(236, 237, 239); /* Light grayish blue to match header and footer */
    color: rgb(45, 52, 54); /* Dark text for readability */
}

/* Section Styling */
.content {
    padding: 50px 20px;
    color: rgb(45, 52, 54); /* Dark text */
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgb(52, 52, 52); /* Slightly darker text for readability */
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: rgb(236, 237, 239); /* Same as header and main */
    color: rgb(45, 52, 54); /* Dark text for footer */
}

footer p {
    font-size: 0.9rem;
}

/* Links */
a {
    color: rgb(52, 152, 219); /* Soft blue link color */
}

a:hover {
    color: rgb(116, 148, 159); /* Soft grayish blue on hover */
}

/* Navigation links (Active state) */
nav a.active {
    color: rgb(209, 163, 140); /* Highlight active links in color2 */
}
/* Default Burger Styles */
.burger {
    display: none;
    font-size: 1.5rem;
    color: rgb(45, 52, 54);
    cursor: pointer;
    z-index: 10;
    position: absolute;
    top: 15px;
    right: 30px; /* More padding on the right */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .burger {
        display: block; /* Show burger icon */
    }

    header nav ul {
        display: none; /* Hidden by default */
        flex-direction: column; /* Stack links vertically */
        background-color: rgb(236, 237, 239); /* Match header background */
        position: absolute;
        top: 60px; /* Below the header */
        right: 0; /* Align with the right edge */
        width: 80%; /* Fit comfortably on screen */
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
        transition: transform 0.3s ease-in-out; /* Smooth slide-in */
        transform: translateX(100%); /* Initially offscreen to the right */
    }

    header nav ul.show {
        display: flex;
        transform: translateX(0); /* Slide into view */
    }

    header nav ul li {
        margin: 10px 0; /* Add spacing between links */
    }
}


/* Tab Buttons */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #ddd;
    border: none;
    border-radius: 5px;
}

.tab-button.active {
    background-color: #aaa;
    color: white;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.hidden {
    display: none;
}

.tab-content:not(.hidden) {
    display: block;
}
