:root {
    --easy-bg: #fdfbf7;
    --easy-text: #4a4a4a;
    --easy-primary: #ff7e67; /* Warm Coral */
    --easy-secondary: #ffffff;
    --easy-accent: #6eb5c0; /* Soft Blue */
    --easy-border: #f0ebe1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--easy-bg); color: var(--easy-text);
    font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Friendly rounded font */
    line-height: 1.7; overflow-x: hidden;
}

.easy-container { max-width: 1000px; margin: 0 auto; padding: 0 30px;}

/* Header */
.easy-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 0; margin-bottom: 50px;
}
.easy-brand {
    font-size: 26px; font-weight: 700; color: var(--easy-primary);
    display: flex; align-items: center; gap: 10px;
}
.easy-brand::before {
    content: '☕'; font-size: 28px;
}
.easy-nav { display: flex; gap: 30px; }
.easy-nav a {
    font-size: 16px; font-weight: 600; color: #888; text-decoration: none;
    transition: color 0.3s; position: relative;
}
.easy-nav a:hover, .easy-nav a.active { color: var(--easy-primary); }
.easy-nav a.active::after {
    content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
    width: 6px; height: 6px; border-radius: 50%; background: var(--easy-primary);
}

/* Hero */
.easy-hero {
    text-align: center; margin-bottom: 80px; padding: 60px 20px;
    background: var(--easy-secondary); border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03); border: 1px solid var(--easy-border);
}
.easy-hero h1 {
    font-size: 42px; color: #333; margin-bottom: 20px; font-weight: 700;
}
.easy-hero p { font-size: 18px; color: #666; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;}

.btn-easy {
    display: inline-block; padding: 16px 40px; font-size: 18px; font-weight: 700;
    color: #fff; background: var(--easy-primary); border-radius: 40px;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(255, 126, 103, 0.3);
}
.btn-easy:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(255, 126, 103, 0.4);}

/* Stats */
.easy-stats {
    display: flex; justify-content: center; gap: 40px; margin-bottom: 80px; flex-wrap: wrap;
}
.es-item {
    background: var(--easy-secondary); padding: 30px 40px; border-radius: 20px;
    text-align: center; box-shadow: 0 10px 25px rgba(0,0,0,0.02); min-width: 200px;
}
.es-val { font-size: 36px; font-weight: 700; color: var(--easy-accent); margin-bottom: 5px;}
.es-lbl { font-size: 15px; color: #888; font-weight: 600;}

/* Features */
.easy-features { margin-bottom: 80px; }
.easy-features h2 { font-size: 30px; text-align: center; margin-bottom: 50px; color: #333;}
.ef-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.ef-card {
    background: var(--easy-secondary); padding: 40px; border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02); border: 1px solid var(--easy-border);
    transition: transform 0.3s;
}
.ef-card:hover { transform: translateY(-5px); }
.ef-card h3 { font-size: 20px; color: #333; margin-bottom: 15px; display: flex; align-items: center; gap: 10px;}
.ef-card h3::before { content: '✨'; font-size: 24px;}
.ef-card p { font-size: 16px; color: #666;}

/* Nodes */
.easy-nodes { margin-bottom: 80px; text-align: center;}
.easy-nodes h2 { font-size: 30px; margin-bottom: 40px; color: #333;}
.en-list { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap;}
.en-item {
    background: var(--easy-secondary); padding: 15px 25px; border-radius: 30px;
    font-weight: 600; color: #555; box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border: 1px solid var(--easy-border);
}

/* FAQ */
.easy-faq { margin-bottom: 100px; }
.easy-faq h2 { font-size: 30px; text-align: center; margin-bottom: 50px; color: #333;}
.e-faq-item {
    background: var(--easy-secondary); padding: 30px; border-radius: 20px;
    margin-bottom: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}
.e-fq { font-size: 18px; font-weight: 700; color: #333; margin-bottom: 12px;}
.e-fa { font-size: 16px; color: #666;}

footer {
    text-align: center; padding: 40px 0; color: #aaa; font-size: 14px;
}

@media (max-width: 768px) {
    .easy-header { flex-direction: column; gap: 20px; }
    .ef-grid { grid-template-columns: 1fr; }
    .easy-hero h1 { font-size: 32px; }
}