@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: Warm Orange/Dark Blue/Beige */
  --primary-color: #D35400;
  --secondary-color: #E67E22;
  --accent-color: #F39C12;
  --light-color: #FAE5D3;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(45deg, #D35400 0%, #E67E22 100%);
  --hover-color: #A04000;
  --background-color: #FDF2E9;
  --text-color: #5D4037;
  --border-color: rgba(211, 84, 0, 0.3);
  --divider-color: rgba(211, 84, 0, 0.1);
  --shadow-color: rgba(211, 84, 0, 0.1);
  --highlight-color: #27AE60; /* Green accent */
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

body { font-family: var(--alt-font); color: var(--text-color); background-color: var(--background-color); }
h1, h2, h3 { font-family: var(--main-font); text-transform: uppercase; letter-spacing: 1px; }

/* Styles specific to V2 */
.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-bottom: 4px solid var(--primary-color);
    transition: transform 0.3s;
}
.feature-box:hover { transform: translateY(-5px); }

.btn-warm {
    background: var(--primary-color);
    color: white;
    padding: 1rem 3rem;
    font-weight: bold;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: 0.3s;
}
.btn-warm:hover { background: transparent; color: var(--primary-color); }

/* Timeline alt style */
.timeline-step { display: flex; margin-bottom: 2rem; align-items: flex-start; }
.step-icon { min-width: 50px; height: 50px; background: var(--secondary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 1.5rem; font-weight: bold; }