/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Family and Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #50F1EE, #ffc371); /* Full body gradient */
    line-height: 1.6;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Header and Navigation */
header {
    background-color: transparent; /* Make header transparent */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    padding: 1rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: white; /* Logo color changed to white for visibility */
}
/* Navigation */
.corner-nav {
    display: flex;
    justify-content: center; /* Center the navigation */
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
}

.corner-nav ul {
    position: relative; /* Changed from absolute to relative */
    list-style-type: none;
    padding: 20px;
}

.corner-nav li {
    display: inline;
    margin: 0 20px; /* Adjust spacing around navigation links */
}

.corner-nav a {
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    transition: color 0.3s ease;
    font-weight: bold;
}

/* Logo styles */
.logo {
    position: relative;
    z-index: 1001;
    padding: 1rem 0;
  }

.logo a {
    color: white;
    text-decoration: none;
    padding: 1rem 0;
}
.corner-nav ul {
    list-style-type: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
}

.corner-nav li {
    display: inline;
    margin-right: 20px;
}

.corner-nav a, nav ul li a {
    text-decoration: none;
    color: white; /* Text color changed to white for visibility */
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.corner-nav a:hover, nav ul li a:hover {
    color: #ddd; /* Lighten text color on hover */
    background: none; /* Remove background on hover */
}

/* Hero Section */
.hero {
    color: white;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(to right, #50F1EE, #ffc371); /* Gradient background */
}
.hero-content {
    animation: enterFromBottom 1s ease forwards;
}

@keyframes enterFromBottom {
    from {
        transform: translateY(20%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.btn-scroll {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #ff3b30;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1em;
    transition: transform 0.3s ease;
}

.btn-scroll:hover {
    transform: translateY(-5px);
}

/* Main Content Styles */
main {
    max-width: 800px;
    margin: 80px auto; /* Increased top margin to push down from header */
    padding: 20px;
    background-color: #fff; /* White background for content */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    text-align: center;
    z-index: 2;
    border-top: none;
}

main h2 {
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eaeaea;
}

main p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Existing Email Link Styles */
/* ... */

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
}
/* Add responsiveness */
@media (max-width: 768px) {
    header {
        position: relative;
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }

    .corner-nav ul, nav ul {
        position: static;
        text-align: center;
        background-color: transparent;
    }

    .corner-nav li, nav ul li {
        display: block;
        margin: 5px 0;
    }
}

form {
    margin-top: 20px;
    text-align: center;
}

form input[type=email] {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form input[type=submit] {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form input[type=submit]:hover {
    background-color: #218838;
}

/* Apply the gradient to the entire body background */
body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #50F1EE, #ffc371); /* Gradient background */
    margin: 0;
    padding: 0;
}

/* Restyle the header to fit the full gradient background */
header {
    background: linear-gradient(to right, #50F1EE, #ffc371);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; /* High enough to stay above the main content */
    border-bottom: none;
    box-shadow: none;
}

header .logo, .corner-nav a {
    color: white; /* Change text color for better contrast */
}

/* Style for the main content box */
.get-started-content {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 2rem;
    margin-top: 100px; /* Adjust or remove this if necessary */
    border-radius: 8px;
    max-width: 600px;
    text-align: left;
    margin-left: auto; /* Add this */
    margin-right: auto; /* Add this */
    /* Remove the position and transform properties */
}

/* Restyle the input and button for a modern look */
.get-started-content form input[type='email'],
.get-started-content form input[type='submit'] {
    border: 2px solid #50F1EE; /* Border color */
    margin: 0.5rem 0;
    padding: 1rem;
    width: calc(100% - 2rem); /* Full width with padding */
    border-radius: 20px; /* Rounded borders for inputs and button */
}

.get-started-content form input[type='submit'] {
    background-color: #50F1EE;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.get-started-content form input[type='submit']:hover {
    background-color: #50F1EE; /* Darken button on hover */
}

/* Footer styles */
footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #333;
    color: #fff;
    position: relative; /* Or 'fixed', depending on your design */
    bottom: 0;
    width: 100%;
    z-index: 10; /* Ensure this is higher than the content but lower than any fixed headers */
}


/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.content-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-subsection {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 2rem; /* Automatically spaces sections apart vertically */
}
.spaced {
    margin-top: 2rem; /* Adds space between sections */
}
.about-subsection h3 {
    color: #333; /* Dark grey color for subheadings */
    margin-bottom: 1rem;
}

.about-subsection p {
    color: #666; /* Lighter grey color for text */
    font-size: 1rem;
    line-height: 1.6;
}
.content-section {
    padding: 2rem 0; /* Add bottom padding to prevent overlap with footer */
}

.faq-item {
    padding: 10px 40px; /* top and bottom padding 20px, left and right padding 100px */
    margin-bottom: 2rem; /* This adds space between each FAQ item */
    background: rgba(255, 255, 255, 0.8); /* Example background for readability */
}
