@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #8E44AD;
  --secondary-color: #3498DB;
  --accent-color: #FFB6C1;
  --light-color: #FFFFFF;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #8E44AD 0%, #3498DB 100%);
  --hover-color: #9B59B6;
  --background-color: #F8F9FA; /* Light Theme */
  --text-color: #333333;
  --border-color: rgba(142, 68, 173, 0.2);
  --divider-color: rgba(52, 152, 219, 0.3);
  --shadow-color: rgba(52, 152, 219, 0.15);
  --highlight-color: #F1C40F;
  --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); margin: 0; line-height: 1.8; font-size: 16px; }
h1, h2, h3, h4 { font-family: var(--main-font); color: var(--primary-color); letter-spacing: 1px; }
a { color: var(--light-color); text-decoration: none; transition: 0.3s; }
.hover-underline:hover { text-decoration: underline; color: var(--accent-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: 20px 0; display: flex; justify-content: space-between; align-items: center; padding: 10px 4%; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
header .logo img { max-height: 40px; }
.navigation ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.navigation a { text-transform: uppercase; font-family: var(--main-font); font-size: 1.1rem; }

#menu-toggle, .hamburger { display: none; }
@media (max-width: 768px) {
    .hamburger { display: block; font-size: 2.2rem; cursor: pointer; color: var(--light-color); }
    .navigation { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: var(--primary-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: 30px; }
}

section:not(#hero) { padding-top: 10dvh; padding-bottom: 10dvh; }
#hero { height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(rgba(142, 68, 173, 0.7), rgba(44, 62, 80, 0.7)), url('./img/bg.jpg') no-repeat center center/cover; }
#hero h1 { font-size: 4rem; margin-bottom: 0.5rem; color: var(--light-color); }

.btn { background: var(--gradient-primary); color: var(--light-color); padding: 14px 40px; border-radius: 5px; font-weight: bold; border: none; box-shadow: 5px 5px 15px var(--shadow-color), -5px -5px 15px #ffffff; transition: all 0.3s ease; font-family: var(--main-font); letter-spacing: 1px; }
.btn:hover { background: var(--primary-color); transform: translateY(-3px); box-shadow: 8px 8px 20px var(--shadow-color), -8px -8px 20px #ffffff; }

.rounded-image { border-radius: 5px; width: 100%; height: auto; display: block; }
.shadow-neumorph { box-shadow: 9px 9px 18px #e6e7e8, -9px -9px 18px #ffffff; background-color: var(--light-color); padding: 25px; border-radius: 8px; border: 1px solid #f1f1f1; }

.divider { border-top: 3px solid var(--divider-color); margin: 0 auto; width: 90%; position: relative; padding: 35px 0; }
.divider-text { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--background-color); padding: 0 30px; color: var(--secondary-color); font-weight: bold; font-family: var(--main-font); font-size: 1.5rem; }

.cta-section { background: url('./img/bg.jpg') fixed center center/cover; position: relative; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(44, 62, 80, 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(300px, 1fr)); gap: 40px; }
.icon-color { color: var(--secondary-color); }
.feature-card { text-align: center; }
.feature-card:hover { border-bottom: 4px solid var(--primary-color); padding-bottom: 21px; transition: 0.2s; }

.faq-container { display: flex; flex-direction: column; gap: 18px; max-width: 750px; margin: 0 auto; }
.faq-item { padding: 20px; border-radius: 5px; border-left: 5px solid var(--primary-color); }
.faq-item summary::-webkit-details-marker { color: var(--primary-color); }

footer { background-color: var(--dark-color); padding: 60px 0 30px; }
footer ul { list-style: none; padding: 0; }
footer a { color: var(--accent-color); }