/*body {*/
/*    font-family: 'Arial', sans-serif;*/
/*    background: #ADD8E6; /* Light blue background color */
/*    color: #333;  /* Dark text for contrast against light blue background */
/*}*/
/**/
/*header {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    padding: 20px 50px;*/
/*}*/
/**/
/*#logo {*/
/*    font-size: 24px;*/
/*    font-weight: bold;*/
/*}*/
/**/
/*nav ul {*/
/*    list-style-type: none;*/
/*}*/
/**/
/*nav li {*/
/*    display: inline;*/
/*    margin-left: 20px;*/
/*}*/
/**/
/*nav a {*/
/*    color: #333;  /* Dark link text for contrast */
/*    text-decoration: none;*/
/*}*/
/**/
/*main {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    height: 60vh;*/
/*}*/
/**/
/*h1 {*/
/*    font-size: 36px;*/
/*    text-align: center;*/
/*}*/
/**/
/*footer {*/
/*    padding: 20px 50px;*/
/*    background: #B0C4DE;  /* Slightly darker blue for footer */
/*    display: flex;*/
/*    justify-content: space-between;*/
/*}*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%; /* Ensures the body stretches across the full height */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #e1f7f8; /* Soft pastel teal background */
    color: #2a2a2a; /* Dark charcoal for text */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the body stretches to the full viewport height */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #202c39; /* Dark teal/navy header */
    width: 100%;
}

header .logo h1 {
    color: #ffffff;
    font-size: 24px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

.main-content {
    flex: 1; /* This allows the main content to expand and fill the space if needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #e1f7f8; /* Same soft pastel teal */
    flex: 1; /* Allow the hero section to grow */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero h2 {
    font-size: 48px;
    font-weight: 600;
    color: #2a2a2a;
}

.hero p {
    font-size: 20px;
    color: #2a2a2a;
}

.hero .cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #4df5b6; /* Neon green accent */
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 50px;
    background-color: #202c39; /* Dark section background */
    width: 100%;
}

.features .feature {
    text-align: center;
    color: #ffffff;
    flex: 1;
    margin: 0 20px;
}

.features .feature img {
    width: 100px;
    margin-bottom: 20px;
}

.features .feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.features .feature p {
    font-size: 16px;
    margin-bottom: 20px;
}

.features .feature a {
    text-decoration: none;
    color: #4df5b6; /* Neon green for links */
    font-weight: 600;
}

footer {
    background-color: #202c39;
    text-align: center;
    padding: 20px;
    color: #ffffff;
    width: 100%;
    position: relative;
    margin-top: auto; /* Ensures the footer is pushed to the bottom if the content is short */
}

footer a {
    color: #4df5b6;
    text-decoration: none;
}
