/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #35424a;
    color: white;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: 3px solid #2c68ac;
    text-align: left; /* Align text to the left in the header */
}

header h1 {
    font-size: 2em;
}

header .subtitle {
    font-size: 1.2em;
    margin-top: 5px;
}

/* Sections */
.section {
    padding: 30px 0;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    text-align: left; /* Align text to the left in sections */
}

.section h2 {
    color: #35424a;
    margin-bottom: 20px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(to top, #F4A460, #FFDA63);
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.cta-button::after {
    content: " >";
}

/* Testimonial */
.testimonial {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.testimonial .author {
    text-align: right;
    font-style: italic;
    color: #777;
}

/* Footer */
footer {
    background: #35424a;
    color: white;
    text-align: center; /* Keep text centered in the footer */
    padding: 20px;
    margin-top: 30px;
}

/* Highlight Box */
.highlight-box {
    background-color: #f9f9f9;
    border: 2px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.highlight-box h3 {
    color: #e44d26; /* Eye-catching color */
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-item h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

/* Responsive Design */
@media(max-width: 768px) {
    .container {
        width: 90%;
    }

    header h1 {
        font-size: 1.5em;
    }

    header .subtitle {
        font-size: 1em;
        margin-top: 5px;
    }
}