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

/* Variables */
:root {
    --primary-color: #2c5282;
    --secondary-color: #48bb78;
    --background-color: #f7fafc;
    --text-color: #2d3748;
    --light-gray: #edf2f7;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* Layout */
header {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: 0.8;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Process Flow */
.process-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 1000px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.process-step h2 {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.process-arrow {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    padding: 0 0.5rem;
}

.process-step ul {
    list-style: none;
    margin-top: 0.75rem;
}

.process-step li {
    margin: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
}

.process-step li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Value Proposition */
.value-proposition {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-points {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.point {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
}

/* Call to Action */
.cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
}

.cta h2, .cta p {
    color: var(--white);
}

.contact-container {
    max-width: 600px;
    margin: 2rem auto 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.2);
}

.or-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.or-divider::before,
.or-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.or-divider span {
    background: var(--primary-color);
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-button {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #38a169;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        align-items: center;
    }

    .process-arrow {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }

    .process-step {
        width: 100%;
        max-width: 280px;
    }

    .value-points {
        flex-direction: column;
    }
}