/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: url('header-image.jpg') center/cover no-repeat; /* Replace with actual header image */
    text-align: center;
    color: white;
    padding: 80px 20px;
}

header h1 {
    font-size: 2.8em;
    font-weight: bold;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #0073e6;
    color: white;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #005bb5;
}

/* Sections */
section {
    padding: 50px 20px;
    background: white;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    font-size: 2em;
    color: #0073e6;
    margin-bottom: 20px;
}

/* Image Styling */
img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Grid Layout for Benefits */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.benefit {
    flex: 1 1 calc(50% - 20px);
    background: #e8f4ff;
    padding: 20px;
    border-radius: 8px;
}

.benefit h3 {
    margin-top: 10px;
    color: #005bb5;
}

/* List Styles */
ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

ul li {
    font-size: 1.1em;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: "✔";
    color: #0073e6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Testimonials */
.testimonials {
    background: #0073e6;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

blockquote {
    font-size: 1.3em;
    font-style: italic;
    margin: 20px auto;
    max-width: 800px;
}

cite {
    display: block;
    font-size: 1em;
    margin-top: 10px;
    font-weight: bold;
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.contact a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 0;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grid {
        flex-direction: column;
    }

    .benefit {
        flex: 1 1 100%;
    }

    header h1 {
        font-size: 2.2em;
    }

    header p {
        font-size: 1em;
    }
}
