@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
}

/* Courier Walay Theme Colors */
:root {
    --primary: #E67E22;
    /* Courier Walay Green */
    --secondary: #34495E;
    /* Orange */
    --dark: #34495E;
    --light: #ECF0F1;
}



.hero {
    background: linear-gradient(135deg, var(--primary), #c1c3c2);
    color: white;
    padding: 4rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    height: 60vh;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.hero .container{
    margin-top: 40px;
}
.cta-button {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #E67E22;
    transform: translateY(-2px);
}

.features {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

/* UPDATED: 2 cards per row */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Changed from 4 to 2 */
    gap: 2rem;
}

.feature-card {
    background: rgb(241, 241, 241);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.how-it-works {
    background-color: var(--light);
    padding: 4rem 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1rem;
    position: relative;
}

.step-number {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}
footer {
    overflow-x: hidden;
}