/* Global styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Section 1: Blank Section for Credits */
.credit-section {
    background-color: black;
    height: 30px; /* Just a thin black bar */
}

/* Section 2: Header with Logo and Sign-In as Text Link */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    padding: 15px 30px;
    color: white;
}

.header .logo img {
    width: 150px;  /* Adjust this size to fit your logo */
}

.header .sign-in a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.header .sign-in a:hover {
    color: #007BFF;
}

/* Section 3: Menu (Very Light Grey, Black Text, Bold) */
.menu {
    background-color: #f0f0f0;  /* Very light grey */
    padding: 10px 0;
    text-align: center;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu ul li {
    display: inline;
    margin: 0 20px;
}

.menu ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold; /* Bold text */
}

.menu ul li a:hover {
    text-decoration: underline;
}

/* Section 4: Hero Image (No background, using img tag directly) */
.hero {
    width: 100%;
    height: auto;
    text-align: center;
}

.hero-banner {
    width: 100%;  /* Make sure the banner spans the whole width */
    height: auto;  /* Maintain aspect ratio */
}

/* Section 5: Highlight Section */
.highlight {
    background-color: #ffcc00;  /* Darker Yellow */
    color: black;
    text-align: center;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.highlight-text {
    max-width: 600px;
    text-align: left; /* Align text to the left */
}

.highlight h2 {
    font-size: 24px;  /* Smaller title */
    margin: 0;
}

.highlight h3 {
    font-size: 20px;  /* Smaller subtitle */
    margin: 10px 0 0;
}

.highlight-button {
    margin-left: 20px;  /* Add space between text and button */
    padding: 15px 30px;
    font-size: 18px;
    background-color: #007BFF;  /* Blue button */
    border: none;
    color: white;
    border-radius: 30px;  /* Rounded corners */
    font-weight: bold;  /* Bold text */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.highlight-button:hover {
    background-color: #0056b3;
}

/* Main Body Section */
.main-body {
    display: flex;
    justify-content: space-between;
    padding: 30px;
}

.content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows wrapping if there's not enough space */
    width: 70%; /* Adjust width as needed */
}

.content-item {
    width: 48%; /* Two images side by side, adjust as necessary */
    margin-bottom: 30px;
    display: flex;
    flex-direction: column; /* Arrange image and content in a column */
    align-items: center;
}

.content-item img {
    width: 100%; /* Image takes up full width */
    height: auto; /* Maintain aspect ratio */
}

.caption {
    width: 100%; /* Ensure button stays beside the text */
    display: flex;
    flex-direction: row; /* Arrange title, content text, and button side by side */
    justify-content: space-between; /* Space between text and button */
    align-items: flex-start; /* Align content to top */
    margin-top: 10px;
}

.caption-text {
    text-align: left; /* Align title and text to the left */
    margin-bottom: 0; /* Remove space between title and content */
    flex: 1; /* Ensure text takes up remaining space */
}

.caption-text h3 {
    color: #7d7d7d; /* Gray color for the title */
    font-size: 18px; /* Adjust font size */
    font-weight: normal; /* Non-bold title */
    margin-bottom: 0; /* Remove space below the title */
}

.caption-text p {
    font-size: 16px; /* Description font size */
    color: #333; /* Darker gray for the description */
    margin-bottom: 10px;
}

.caption button {
    padding: 12px 30px;
    background-color: #007BFF;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.caption button:hover {
    background-color: #0056b3;
}

/* Sidebar Section */
.sidebar {
    width: 25%;  /* Adjust width as needed */
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.sidebar h4 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.sidebar img {
    width: 100%;  /* Make ad image responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px;
}