/* Base styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

h1, h2, h3, h4 {
    margin-top: 0;
    color: #002b5b; /* Dark blue for headings */
}

section {
    padding: 60px 0;
}

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

/* Hero section */
.hero {
    background-color: #002b5b;
    color: #fff;
    text-align: center;
    padding: 100px 0 80px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-primary {
    background-color: #0073c8;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Pain section */
.pain-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.pain-text {
    flex: 1 1 500px;
}

.pain-text ul {
    list-style: none;
    padding-left: 0;
}

.pain-text li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pain-text li::before {
    content: '\f058'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #0073c8;
}

.pain-image {
    flex: 1 1 400px;
    text-align: center;
}

.pain-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Solution section */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card i {
    font-size: 2rem;
    color: #0073c8;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #002b5b;
}

.card p {
    font-size: 0.95rem;
    color: #555;
}

/* Process section */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.step {
    flex: 1 1 calc(25% - 20px);
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step span {
    display: inline-block;
    background-color: #0073c8;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 10px;
}

.step h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #002b5b;
}

.step p {
    font-size: 0.9rem;
    color: #555;
}

/* Trust section */
.trust-list {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
    margin: 30px auto 0;
}

.trust-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.trust-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #0073c8;
}

/* CTA section */
.cta {
    background-color: #0073c8;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

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

.cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Form section */
.form-section {
    background-color: #f0f4f8;
}

.lead-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #002b5b;
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.form-group.full-width {
    width: 100%;
}

.lead-form button {
    background-color: #0073c8;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lead-form button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #002b5b;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pain-content, .process-steps {
        flex-direction: column;
    }
    .step {
        flex: 1 1 100%;
    }
}