@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: #27AE60 (Green), #E67E22 (Orange), #2C3E50 (Dark), #F9F9F9 (Light) */
  --primary-color: #27AE60;
  --secondary-color: #E67E22;
  --accent-color: #2ECC71;
  --light-color: #FFFFFF;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(45deg, #27AE60 0%, #2ECC71 100%);
  --hover-color: #219150;
  --background-color: #F9F9F9;
  --text-color: #333333;
  --border-color: rgba(39, 174, 96, 0.3);
  --divider-color: rgba(230, 126, 34, 0.2);
  --shadow-color: rgba(15, 16, 33, 0.1);
  --highlight-color: #F1C40F;
  
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--main-font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header */
header {
    background-color: var(--dark-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--secondary-color);
}
header a { color: #fff; text-decoration: none; font-weight: 700; }
header a:hover { color: var(--secondary-color); }

/* Hamburger Menu Logic */
#nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; font-size: 1.8rem; color: var(--secondary-color); }

@media (max-width: 768px) {
    .nav-toggle-label { display: block; position: absolute; right: 20px; top: 20px; }
    .navigation ul {
        display: none;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        border-top: 2px solid var(--secondary-color);
    }
    .navigation ul li { margin: 10px 0; text-align: center; }
    #nav-toggle:checked ~ .navigation ul { display: flex; }
}

/* Components */
.neu-box {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-left: 5px solid var(--primary-color);
    padding: 2rem;
    transition: 0.3s;
}
.neu-box:hover {
    transform: translateY(-5px);
    border-left-color: var(--secondary-color);
}

.btn-action {
    background: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    font-family: var(--main-font);
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    display: inline-block;
    transition: 0.3s;
}
.btn-action:hover {
    background: #d35400;
    transform: scale(1.05);
}

/* Hero */
.hero-wrapper {
    height: 80vh; /* Config variable */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Timeline/Features styling override */
.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px var(--shadow-color);
}
.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    min-width: 50px;
    text-align: center;
}

/* Forms */
input, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: 0.3s;
}
input:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 4rem 0;
}
footer a { color: #fff; text-decoration: none; }