@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #344CB7;
  --secondary-color: #577BC1;
  --accent-color: #FFEB00;
  --light-color: #F2F2F2;
  --dark-color: #000000;
  --gradient-primary: linear-gradient(135deg, #577BC1 0%, #344CB7 100%);
  --hover-color: #1A2E8A;
  --background-color: #FFFFFF;
  --text-color: #333333;
  --border-color: rgba(52, 76, 183, 0.2);
  --divider-color: rgba(0, 0, 0, 0.1);
  --shadow-color: rgba(52, 76, 183, 0.1);
  --highlight-color: #FFEB00;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Inter', 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(--primary-color); }
a { color: var(--primary-color); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--hover-color); }
.hover\:text-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(--light-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); border-bottom: 2px solid var(--border-color); }
header .logo img { max-height: 50px; }
.navigation ul { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.navigation a { color: var(--dark-color); font-weight: 600; }
.navigation a:hover { color: var(--primary-color); }

#menu-toggle, .hamburger { display: none; }
@media (max-width: 768px) {
    .hamburger { display: block; font-size: 2rem; cursor: pointer; color: var(--dark-color); padding-right: 20px;}
    .navigation { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: var(--light-color); box-shadow: 0 4px 6px var(--shadow-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: 75vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./img/bg.jpg') no-repeat center center/cover; }
#hero h1 { font-size: 3rem; margin-bottom: 1rem; color: var(--light-color); }

.btn { background: var(--gradient-primary); color: var(--light-color); padding: 12px 30px; border-radius: 8px; font-weight: bold; border: 1px solid var(--border-color); box-shadow: 6px 6px 12px #e6e6e6, -6px -6px 12px #ffffff; transition: all 0.3s ease; }
.btn:hover { background: var(--hover-color); color: var(--accent-color); transform: translateY(-2px); }

.rounded-image { border-radius: 12px; width: 100%; height: auto; display: block; }
.shadow-neumorph { box-shadow: 8px 8px 16px #e6e6e6, -8px -8px 16px #ffffff; background-color: var(--background-color); padding: 25px; border-radius: 12px; border: 1px solid #f9f9f9; }

.divider { border-top: 1px solid var(--divider-color); margin: 0 auto; width: 80%; position: relative; padding: 20px 0; }
.divider-text { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--background-color); padding: 0 20px; color: var(--secondary-color); font-weight: bold; font-family: var(--main-font); }

.cta-section { background: url('./img/bg.jpg') fixed center center/cover; position: relative; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(52, 76, 183, 0.85); }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--accent-color); }

.grid-features, .grid-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.icon-color { color: var(--primary-color); }
.feature-card:hover, .testimonial-card:hover { transform: translateY(-5px); transition: 0.3s; border-color: var(--accent-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(--primary-color); }

footer { background-color: var(--dark-color); padding: 40px 0 20px; color: var(--light-color); }
footer ul { list-style: none; padding: 0; }
footer a { color: var(--light-color); }