@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: Forest Green, Sage, Gold, Dark Grey */
  --primary-color: #27AE60;
  --secondary-color: #2ECC71;
  --accent-color: #F1C40F;
  --light-color: #F9FAFB;
  --dark-color: #1F2937;
  --gradient-primary: linear-gradient(45deg, #27AE60 0%, #229954 100%);
  --hover-color: #1E8449;
  --background-color: #F0F2F0; /* Pale green-grey */
  --text-color: #4B5563;
  --border-color: rgba(39, 174, 96, 0.2);
  --divider-color: rgba(46, 204, 113, 0.1);
  --shadow-light: #ffffff;
  --shadow-dark: #cbd5e0;
  --highlight-color: #E74C3C;
  
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 0.5px;
}

/* Neumorphism - Softer, more rounded for organic feel */
.neu-card {
    background: var(--background-color);
    box-shadow: 8px 8px 16px var(--shadow-dark), 
                -8px -8px 16px var(--shadow-light);
    border-radius: 24px;
    padding: 2rem;
}

.neu-btn {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    color: var(--primary-color);
    font-weight: bold;
    padding: 14px 30px;
    border-radius: 12px;
    box-shadow: 5px 5px 10px var(--shadow-dark), 
                -5px -5px 10px var(--shadow-light);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.neu-btn:hover {
    color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 7px 7px 14px var(--shadow-dark), 
                -7px -7px 14px var(--shadow-light);
}

.neu-btn-filled {
    background: var(--primary-color);
    color: white;
    box-shadow: 5px 5px 15px rgba(39, 174, 96, 0.4);
}

.neu-btn-filled:hover {
    background: var(--hover-color);
    color: white;
}

/* Header */
header {
    background-color: var(--dark-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 45px;
}

/* Menu Logic (CSS Only) */
.menu-checkbox { display: none; }
.menu-icon { display: none; color: white; font-size: 1.5rem; cursor: pointer; }
.menu-list { display: flex; gap: 30px; list-style: none; }
.menu-list a { color: #ddd; text-decoration: none; font-size: 0.95rem; text-transform: uppercase; transition: color 0.3s; }
.menu-list a:hover { color: var(--secondary-color); }

@media (max-width: 768px) {
    .menu-icon { display: block; }
    .menu-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-color);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
    }
    .menu-checkbox:checked ~ .menu-list { display: flex; }
}

/* Hero */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 !important;
}

/* Features Timeline Vertical */
.features-container {
    position: relative;
    padding: 20px 0;
}

.feature-box {
    position: relative;
    background: var(--background-color);
    border: 1px solid rgba(255,255,255,0.5);
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: scale(1.02);
    z-index: 10;
}

/* Form Styles */
.form-group input, .form-group textarea {
    width: 100%;
    background: #e6e9e6;
    border: none;
    padding: 15px;
    border-radius: 8px;
    box-shadow: inset 3px 3px 6px #ccc, inset -3px -3px 6px #fff;
    margin-bottom: 15px;
    outline: none;
    color: var(--dark-color);
}

.form-group input:focus {
    box-shadow: inset 1px 1px 2px #ccc, inset -1px -1px 2px #fff;
    border-left: 4px solid var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #aaa;
    padding: 4rem 1rem 2rem;
}
footer a { color: #ddd; text-decoration: none; transition: 0.3s; }
footer a:hover { color: var(--primary-color); }

/* Separator */
.separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    width: 80%;
    margin: 0 auto;
}