/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #b3e5fc; /* Light baby blue */
    color: #000;
    overflow-y: scroll;
    /* Remove text-align: center; to avoid centering all text */
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

header nav a {
    margin: 0 15px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.header-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-left: 15px;
    cursor: pointer;
    font-weight: bold;
}

.header-buttons .highlight {
    background-color: #0288d1;
    color: #fff;
}

/* Main Content Styling */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 100px;
}

main h1 {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    max-width: 800px; /* Set a maximum width to contain the text */
    text-align: center; /* Center the text within the max width */
}

.highlight {
    color: #c8fdff; /* Change this to any color you'd like for highlighting */
    font-weight: bold; /* Make the text bolder */
    background-color: #78efff; /* Optional: a light background color to make the words stand out */
    padding: 2px 4px; /* Optional: adds a little space around the text */
    border-radius: 14px; /* Optional: rounds the edges of the background */
}

main p {
    font-size: 1.2rem;
    font-weight: bold;
    max-width: 80%;
    color: #e3f9ff;
}

/* Why Affirmio Section Styling */
#why-affirmio {
    padding: 50px 20px;  /* Padding for top/bottom and left/right */
    text-align: left;     /* Align text to the left */
    width: 33%;           /* Width of the section */
}

#why-affirmio h2 {
    font-size: 2.5rem;      /* Increased heading size */
    margin-bottom: 20px;    /* Space below the heading */
}

#why-affirmio h3 {
    font-size: 1.8rem;      /* Increased size for the questions */
    font-weight: 600;       /* Semi-bold */
    margin-bottom: 10px;    /* Space below the questions */
}

#why-affirmio p {
    font-size: 1.3rem;       /* Increased size for paragraph text */
    color: #333;             /* Text color */
    margin-bottom: 20px;     /* Space below paragraphs */
}

.logo {
    display: flex;
    align-items: center; /* Center vertically */
}

.logo-image {
    height: 40px; /* Adjust as needed */
    width: 40px; /* Set width for a circular shape */
    border-radius: 40%; /* Makes the image circular */
    margin-right: 10px; /* Space between image and text */
    object-fit: cover; /* Ensures the image covers the area */
}
