/* Basic resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', system-ui;
    color: #333;
    line-height: 1.6;
}

.logo {
    width: 80px;
    margin-left: 50px;
}

/* Ensure the logo and name are aligned horizontally */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    margin-right: 20px;
}

.logo-container h1 {
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 40pt;
    padding-bottom: 5px;
    align-items: center;
    font-family: "Montserrat Alternates";
}

/* Header */
.main-header {
    background-color: #70b3e3;
    color: white;
    padding: 20px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header nav ul {
    list-style: none;
    display: flex;
    align-items: center; /* Ensures all items, including the button, are vertically centered */
    margin-right: 200px;
}

.main-header nav ul li {
    margin-left: 20px;
    display: flex; /* Allows consistent alignment for all links */
    align-items: center; /* Vertically center the login button */
}

.main-header nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    font-weight: 350;
    display: inline-block;
    padding: 10px 0; /* Padding to align text links */
}

.main-header .login-button {
    background-color: #E3A070;
    width: 150px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 450;
    text-align: center;
    display: inline-block;
    font-size: 12pt;
    margin-left: 20px; /* Optional spacing between the login button and other links */
}

.main-header .login-button:hover {
    background-color: #c37a50;
}


.main-header nav ul li {
    margin-left: 20px;
    list-style: none;
}

.main-header nav ul li a {
    display: inline-block; /* Makes sure the anchor tag behaves like a block for width */
}

.main-header .login-button:hover {
    background-color: #c37a50;
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    margin-top: 60px;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.hero .hero-text {
    flex: 1;
    margin-right: 20px;
}

.hero .hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero .hero-image img {
    max-width: 100%;
    height: auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
    width: 600px;
    color: rgb(116, 116, 116);
}

/* Styling for different parts of the h1 */
.light-text {
    font-weight: 300;
    font-size: 48px;
    color: #015477;
}

.bold-text {
    font-weight: 700;
    font-size: 58px;
    color: #015477;
}

/* Call to Action Button */
.cta-button {
    background-color: #E3A070;
    width: 150px;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 450;
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    font-size: 12pt;
}

.cta-button:hover {
    background-color: #c37a50;

}
/* Features and About Section Styling */
/* Features and About Section Styling */
.features, .about {
    height: 100vh; /* Full page height */
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.features {
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.features-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.features h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.features p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; /* Center the paragraph */
}

.features-list {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 20px; /* Add some gap between items for a balanced look */
}

.feature-item {
    width: 30%;
    text-align: center;
}

.feature-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    color: #555;
}

.about {
    background-color: #70b3e3;
    color: white;
}

.features h2, .about h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.features p, .about p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
}

.features-list {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.feature-item {
    width: 30%;
    text-align: center;
}

.feature-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    color: #555;
}

.about img {
    width: 400px;
    height: auto;
    margin-top: 40px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #fff;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Keep the header fixed at the top */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #70b3e3;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
