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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    text-align: left;
}

.logo {
    max-width: 200px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #f7f7f7;
}

.hero h1 {
    font-size: 2.2em;
    line-height: 1.25; /* Reduce line height */
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto; 
    margin-right: auto; /* Center the heading */
}

.hero p {
    margin-bottom: 20px;
	line-height: 1.25; /* Reduce line height */
}

.cta-button {
    display: inline-block;
    padding: 15px 100px; /* Increase padding to make the button wider */
    background-color: #2a3f9d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure responsiveness */
}
.safe-secure {
    font-size: 0.8em;
    color: #888;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.how-it-works p {
    margin-bottom: 20px;
}

.how-it-works ol {
    list-style-type: decimal;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px auto;
    padding-left: 80px;
}

.how-it-works ul {
  
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px auto;
    padding-left: 80px;
}
.how-it-works .cta-button {
    margin-top: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f7f7f7;
    padding: 40px 20px;
    text-align: center;
}

.testimonials blockquote {
    margin-bottom: 20px;
    font-style: italic;
    color: #444;
}

.testimonials cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

/* Footer */
.footer {
    padding: 20px 0;
    text-align: center;
    background-color: #333;
    color: #fff;
}

.footer-nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .cta-button {
        padding: 15px 100px; /* Increase padding to make the button wider */
        font-size: 1em;
    }

    .how-it-works ol {
        padding-left: 30px;
    }
	  .how-it-works ul {
        padding-left: 20px;
    }
}

