/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding-top: 60px; /* Adjust for fixed header */
}

.corner-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    font-size: 1em;
}

/* Header Styling */
header {
    background: #0044cc;
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    text-align: center; /* Ensures content inside the header is centered */
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers items horizontally */
}


header h1 {
    font-size: 2em;
    text-align: center;
}

header p {
    text-align: center;
    font-size: 1.1em;
    margin-top: 10px;
}

/* Container Styling */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Intro Section */
#intro {
    background: white;
    padding: 60px 20px 40px; /* Adjust top padding for fixed header */
    text-align: center;
}

#intro h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#intro p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

/* How It Works Section */
#value-adds {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#value-adds h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.feature {
    margin: 20px 0;
}

.feature h3 {
    font-size: 1.8em;
    color: #0044cc;
}

.feature p {
    font-size: 1.1em;
    color: #555;
}

/* Call to Action Section */
#cta {
    background: #0044cc;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

#cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}


#signup-btn {
    background-color: #ff5733;
    color: white;
    padding: 12px 25px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px; /* Adds space between the text and the button */
}

#signup-btn:hover {
    background-color: #e94e2b;
}

/* Footer Styling */
footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 1em;
}
