/* General Reset */
body, h1, h2, h3, p, a {
    margin: 0.5;
    padding: 0.5;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

body {
    background-color: #ffffff; /* Dark background */
    color: #000000; /* Light text for readability */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


/* Hero Section */
.hero {
    background-blend-mode: overlay; /* Blend image with dark color */
    background-color: #efeed0; /* yellow blend */
    color: #000000; /* White text */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;    height: 100vh;
    flex-direction: column;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero img {
    max-width: 50%;
    max-height: 50%;
    margin: auto;
    display: block;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.hero .cta {
    background-color: #3d5c6d;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.hero .cta:hover {
    background-color: #3d5c6d;
}

.icon-svg {
    width: 100px;
    height: 100px;
    transform: scale(2); /* Scale to 2x */
    transform-origin: center; /* Scale from the center */
}

.terms {
    font-size: .9em;
}

/* Features Section */
#features {
    padding: 50px 20px;
    background-color: #ffffff; /* Dark section background */
    color: #000000; /* Ensure text is visible on dark background */
}

#features h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    background: #d7d7d7;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 20px 0;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-image {
    max-width: 50%;
    max-height: 50%;
    object-fit: cover;
}

.feature-text h3 {
    font-size: 1.5em;
    margin: 0 0 10px;
}

.feature-text p {
    font-size: 1em;
    margin: 0;
}

@media (max-width: 600px) {
    .feature-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-image {
        margin: 0 0 10px 0;
    }
}

/* Testimonials Section */
#testimonials {
    background: #111;
    color: white;
    padding: 50px 20px;
}

#testimonials blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 500px;
}

#testimonials cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bbbbbb; /* Slightly lighter text for citation */
}

/* Footer */
footer {
    background: #000; /* Pure black for footer */
    color: white;
    padding: 10px;
    font-size: 0.8rem;
}

footer a {
    color: #ff6347; /* Link color for footer */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
