/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light gray background */
    color: #333; /* Dark text color */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #489df7; /* Primary color */
    color: white;
    padding: 50px 0;
    text-align: center;
}

.logo {
    width: 150px; /* Logo size */
}

h1 {
    font-size: 2.5rem;
    margin: 10px 0;
}

h2 {
    font-size: 2rem;
    margin: 10px 0 10px 50px;
}

p {
    font-size: 1.2rem;
    margin: 20px 0;
}

/* Call-to-Action Button */
.cta-button {
    background-color: #28a745; /* Success color */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #218838; /* Darker success color on hover */
}

/* Call-to-Action Button */
.cta-button-2 {
    background-color: #489df7; /* Success color */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.cta-button-2:hover {
    background-color: #0d79ec; /* Darker success color on hover */
}

.privacy-button {
    height: 40px;
    padding: 15px 30px;
    text-align: center;
}

/* Features Section */
.features {
    margin: 50px 0px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.feature {
    background-color: #fff; /* White background for features */
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
    line-height: 1.5;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.about p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Footer Styles */
footer {
    background-color: #489df7; /* Primary color */
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: white;
    text-decoration: underline;
}
