@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #34495D;
  --secondary-color: #2C3D4F;
  --accent-color: #EE7738;
  --light-color: #EAE4D5;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #34495D 0%, #2C3D4F 100%);
  --hover-color: #F59D2A;
  --background-color: #1A1A1A; /* Dark theme */
  --text-color: #F2F2F2;
  --border-color: rgba(238, 119, 56, 0.3);
  --divider-color: rgba(234, 228, 213, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --highlight-color: #ECE852;
  --main-font: 'Lora', serif;
  --alt-font: 'Open Sans', sans-serif;
}

body { font-family: var(--alt-font); color: var(--text-color); background-color: var(--background-color); margin: 0; line-height: 1.6; }
h1, h2, h3, h4 { font-family: var(--main-font); color: var(--light-color); }
a { color: var(--light-color); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--hover-color); }
.hover-underline:hover { text-decoration: underline; }

.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-around; align-items: center; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 6px var(--shadow-color); }
header .logo img { max-height: 50px; }
.navigation ul { display: flex; gap: 20px; 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); padding-right: 20px;}
    .navigation { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: var(--dark-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: 20px; }
}

section:not(#hero) { padding-top: 10dvh; padding-bottom: 10dvh; }
#hero { height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(rgba(15, 16, 33, 0.8), rgba(15, 16, 33, 0.8)), url('./img/bg.jpg') no-repeat center center/cover; }
#hero h1 { font-size: 3rem; margin-bottom: 1rem; color: var(--highlight-color); }

.btn { background: var(--gradient-primary); color: var(--light-color); padding: 12px 30px; border-radius: 30px; font-weight: bold; border: 1px solid var(--border-color); box-shadow: 5px 5px 10px var(--shadow-color), -5px -5px 10px rgba(255,255,255,0.05); transition: all 0.3s ease; }
.btn:hover { background: var(--hover-color); color: var(--dark-color); transform: translateY(-2px); }

.rounded-image { border-radius: 20px; width: 100%; height: auto; display: block; }
.shadow-neumorph { box-shadow: 8px 8px 16px var(--shadow-color), -8px -8px 16px rgba(255,255,255,0.02); background-color: var(--secondary-color); padding: 20px; border-radius: 15px; border: 1px solid var(--border-color); }

.divider { border-top: 1px solid var(--border-color); margin: 0 auto; width: 80%; position: relative; padding: 20px 0; }
.divider-text { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--background-color); padding: 0 20px; color: var(--accent-color); font-weight: bold; }

.cta-section { background: url('./img/bg.jpg') fixed center center/cover; position: relative; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(15, 16, 33, 0.85); }
.cta-section .container { position: relative; z-index: 2; }

.grid-features, .grid-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.icon-color { color: var(--accent-color); }
.feature-card:hover, .testimonial-card:hover { transform: translateY(-5px); transition: 0.3s; border-color: var(--highlight-color); }

.faq-container { display: flex; flex-direction: column; gap: 15px; max-width: 800px; margin: 0 auto; }
.faq-item { padding: 20px; border-radius: 10px; }
.faq-item summary::-webkit-details-marker { color: var(--accent-color); }

footer { background-color: var(--dark-color); padding: 40px 0 20px; border-top: 2px solid var(--border-color); }
footer ul { list-style: none; padding: 0; }