:root {
    --primary-color: #2D8664;
    --text-color: #333;
    --light-text-color: #777;
    --bg-color: #fff;
    --light-bg-color: #f9f9f9;
    --card-bg-1: #fff;
    --card-bg-2: #fff;
    --step-bg-1: #FDF2F0;
    --step-bg-2: #FDF2F0;
    --step-bg-3: #FDF2F0;
    --step-h-bg: #F2F7F5;
    --cta-bg: linear-gradient(to bottom, #76B4A3, #2D8664);
    --footer-bg: #1A2B2A;
    --footer-text: #fff;
    --step-number-color: #F8B4A6;
    --step-number-color-h: #76B4A3;
    --hero-bg: #EDF7FA;
}

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

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

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Hero */
header {
    background-color: var(--hero-bg);
    padding: 100px 0;
    text-align: left;
}

h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin-bottom: 40px;
    max-width: 700px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

.btn-primary:hover {
    background-color: #246d51;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
}

.pace-way {
    background-color: var(--hero-bg);
}

/* Sections General */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-desc {
    color: var(--light-text-color);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Pace & Way Cards */
.cards {
    display: flex;
    gap: 20px;
}

.card {
    flex: 1;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    background: white;
}

.card h3 {
    margin-bottom: 15px;
}

/* How It Works (Vertical Steps) */
.how-it-works .steps {
    display: flex;
    gap: 20px;
}

.step {
    flex: 1;
    background-color: var(--step-bg-1);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: var(--step-number-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-h .step-number {
    background-color: var(--step-number-color-h);
}

.step h3, .step-h h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Getting Started (Horizontal style steps) */
.getting-started .steps-horizontal {
    display: flex;
    gap: 20px;
    position: relative;
}

.getting-started .steps-horizontal::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: #ddd;
    z-index: 0;
}

.step-h {
    flex: 1;
    background-color: var(--step-h-bg);
    padding: 30px;
    border-radius: 12px;
    z-index: 1;
}

.step-h .step-number {
    margin-top: -15px;
    position: relative;
}

/* CTA Section */
.cta {
    background: var(--cta-bg);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-footer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .cards, .steps, .steps-horizontal {
        flex-direction: column;
    }
    
    .getting-started .steps-horizontal::before {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
