@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #27AE60;
  --secondary-color: #A9B388;
  --accent-color: #D35400;
  --light-color: #FEFAE0;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #27AE60 0%, #A9B388 100%);
  --hover-color: #F39C12;
  --background-color: #F2F2F2; /* Colorful/Light Theme */
  --text-color: #2C3E50;
  --border-color: rgba(39, 174, 96, 0.4);
  --divider-color: rgba(44, 62, 80, 0.2);
  --shadow-color: rgba(169, 179, 136, 0.5);
  --highlight-color: #C0392B;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

body { font-family: var(--alt-font); color: var(--text-color); background-color: var(--background-color); margin: 0; line-height: 1.7; }
h1, h2, h3, h4 { font-family: var(--main-font); color: var(--dark-color); }
a { color: var(--light-color); text-decoration: none; transition: color 0.3s; }
a.hover-underline:hover { text-decoration: underline; color: var(--hover-color); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-container { display: flex; flex-wrap: wrap; }

header { background-color: var(--dark-color); padding: 15px 0; display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
header .logo img { max-height: 45px; }
.navigation ul { display: flex; gap: 25px; list-style: none; margin: 0; padding: 0; }

#menu-toggle, .hamburger { display: none; }
@media (max-width: 768px) {
    .hamburger { display: block; font-size: 2rem; cursor: pointer; color: var(--light-color); }
    .navigation { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: var(--dark-color); border-top: 1px solid var(--border-color); }
    .navigation ul { flex-direction: column; padding: 20px; text-align: center; }
    #menu-toggle:checked ~ .navigation { display: block; }
    .flex-container { flex-direction: column; }
    .img-wrapper, .text-wrapper { width: 100% !important; padding: 0 !important; margin-bottom: 25px; }
}

section:not(#hero) { padding-top: 10dvh; padding-bottom: 10dvh; }
#hero { height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.6)), url('./img/bg.jpg') no-repeat center center/cover; }
#hero h1 { font-size: 3.5rem; margin-bottom: 1rem; color: var(--light-color); text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }

.btn { background: var(--gradient-primary); color: var(--dark-color); padding: 15px 35px; border-radius: 8px; font-weight: bold; border: 2px solid transparent; box-shadow: 6px 6px 12px var(--shadow-color), -6px -6px 12px #ffffff; transition: all 0.3s ease; display: inline-block; }
.btn:hover { background: var(--hover-color); color: white; border-color: var(--dark-color); }

.rounded-image { border-radius: 10px; width: 100%; height: auto; display: block; }
.shadow-neumorph { box-shadow: 8px 8px 16px var(--shadow-color), -8px -8px 16px #ffffff; background-color: var(--light-color); padding: 30px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.5); }

.divider { border-top: 2px dashed var(--divider-color); margin: 0 auto; width: 85%; position: relative; padding: 30px 0; }
.divider-text { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--background-color); padding: 0 25px; color: var(--dark-color); font-weight: bold; font-size: 1.2rem; }

.cta-section { background: url('./img/bg.jpg') fixed center center/cover; position: relative; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(211, 84, 0, 0.8); }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--light-color); }

.grid-features, .grid-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 35px; }
.icon-color { color: var(--primary-color); }
.feature-card { border-top: 4px solid var(--primary-color); }
.feature-card:hover { transform: scale(1.03); transition: 0.3s; }

.faq-container { display: flex; flex-direction: column; gap: 20px; max-width: 700px; margin: 0 auto; }
.faq-item { padding: 25px; border-radius: 8px; }
.faq-item summary::-webkit-details-marker { color: var(--highlight-color); }

footer { background-color: var(--dark-color); padding: 50px 0 25px; color: var(--light-color); }
footer ul { list-style: none; padding: 0; }
footer a { color: var(--light-color); }