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

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #111111; /* Dark Gray/Black */
    line-height: 1.6;
}

/* Container to center content */
.container {
    width: 85%; /* Limits the width */
    max-width: 1200px; /* Keeps content from stretching too wide */
    margin: 0 auto; /* Centers the container */
}

/* Header */
#header {
    background-color: #62518E; /* Muted Purple */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

#header h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

#header p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-btn {
    background-color: #4C6A92; /* Muted Blue-Gray */
    color: #ffffff; /* White text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    display: inline-block; /* Inline but block-level behavior */
    margin: 20px 0; /* Center button and add space */
    border: none; /* Ensures no border is visible */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds shadow to lift the button */
    transition: background-color 0.3s ease; /* Adds smooth transition effect */
}

.cta-btn:active {
    background-color: #3A5574; /* Darker Blue-Gray for active state */
    color: #ffffff;
}

/* Section styling */
section {
    padding: 60px 0;
    text-align: center; /* Centers text in sections */
    display: flex; /* Flexbox to ensure centering of child elements */
    flex-direction: column; /* Ensures content is stacked vertically */
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Ensures content is centered horizontally */
}

/* Heading */
h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #62518E; /* Muted Purple */
}

ul {
    list-style-type: disc; /* Makes the bullets appear */
    list-style-position: inside; /* Ensures bullets are aligned with the text */
    padding-left: 20px; /* Adds space before the list starts */
    margin-top: 20px;
    text-align: left; /* Keeps text aligned left */
    display: inline-block;
    max-width: 800px;
}

ul li {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative; /* Allows us to position the bullet for extra styling */
    padding-left: 30px; /* Adds space for the bullet */
}

/* Community Support Section */
#community-support {
    background-color: #C1C4D3; /* Light Grayish Blue */
    color: #111111;
}

/* Features Section */
#features {
    background-color: #ffffff;
    color: #111111;
}

/* Purpose Section */
#purpose {
    background-color: #f4f4f4;
    color: #111111;
}

#purpose b {
    color: #62518E; /* Muted Purple */
}

/* Pricing Section */
#pricing {
    background-color: #C1C4D3; /* Light Grayish Blue */
    color: #111111;
    text-align: center;
}

#pricing strong {
    font-size: 28px;
    color: #111111; /* Dark Gray/Black */
}

/* Contact Section */
#contact {
    background-color: #ffffff;
    color: #111111;
}

/* Footer */
#footer {
    background-color: #111111; /* Dark Gray/Black */
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

#footer p {
    font-size: 16px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    #header h1 {
        font-size: 28px;
    }

    #header p {
        font-size: 18px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    ul li {
        font-size: 16px;
    }
}
