/* NEOMORPHISM THEME STYLES */
:root {
 --bg-color: #e0e5ec;
 --primary-color: #5a7e9a;
 --primary-dark: #48657c;
 --text-color: #3f4a56;
 --text-muted: #8a8a8a;
 --light-shadow: #ffffff;
 --dark-shadow: #bebebe;
 --radius-sm: 8px;
 --radius-md: 12px;
 --radius-lg: 20px;
 --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
 --font-family: 'Poppins', sans-serif;
}

/* GENERAL RESETS & TYPOGRAPHY */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
 font-size: 16px;
}

body {
 font-family: var(--font-family);
 background-color: var(--bg-color);
 color: var(--text-color);
 line-height: 1.7;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 24px;
}

h1, h2, h3, h4 {
 font-weight: 600;
 line-height: 1.3;
 color: var(--text-color);
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

a {
 color: var(--primary-color);
 text-decoration: none;
 transition: var(--transition);
}
a:hover {
 color: var(--primary-dark);
}

img {
 max-width: 100%;
 height: auto;
 display: block;
}

.section {
 padding: 80px 0;
}

/* HEADER & NAVIGATION */
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 transition: var(--transition);
}
.header.scrolled {
 background-color: var(--bg-color);
 box-shadow: 6px 6px 12px var(--dark-shadow), -6px -6px 12px var(--light-shadow);
}
.nav {
 height: 80px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-color);
}
.nav-menu {
 display: flex;
}
.nav-list {
 display: flex;
 align-items: center;
 list-style: none;
 gap: 16px;
}
.nav-link {
 padding: 10px 20px;
 border-radius: var(--radius-md);
 font-weight: 500;
 transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
 color: var(--primary-dark);
 box-shadow: inset 4px 4px 8px var(--dark-shadow), inset -4px -4px 8px var(--light-shadow);
}
.nav-toggle {
 display: none;
 cursor: pointer;
 width: 32px;
 height: 24px;
 position: relative;
}
.nav-toggle span {
 position: absolute;
 left: 0;
 width: 100%;
 height: 2px;
 background-color: var(--text-color);
 border-radius: 2px;
 transition: var(--transition);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { bottom: 0; }

/* HERO SECTION */
.hero-section {
 padding-top: 160px;
 padding-bottom: 80px;
 overflow: hidden;
}
.hero-container {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 align-items: center;
 gap: 60px;
}
.hero-tagline {
 display: inline-block;
 color: var(--primary-color);
 font-weight: 600;
 margin-bottom: 16px;
}
.hero-title {
 margin-bottom: 24px;
}
.hero-description {
 font-size: 1.1rem;
 color: var(--text-muted);
 max-width: 550px;
 margin-bottom: 32px;
}
.hero-buttons {
 display: flex;
 gap: 16px;
}
.hero-visual img {
 border-radius: var(--radius-lg);
 box-shadow: 12px 12px 24px var(--dark-shadow), -12px -12px 24px var(--light-shadow);
}

/* BUTTONS */
.btn {
 padding: 15px 30px;
 border: none;
 border-radius: var(--radius-md);
 font-weight: 600;
 font-size: 1rem;
 cursor: pointer;
 transition: var(--transition);
 text-align: center;
}
.btn-primary {
 background-color: var(--primary-color);
 color: #fff;
 box-shadow: 6px 6px 12px var(--dark-shadow), -6px -6px 12px var(--light-shadow);
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 transform: translateY(-2px);
}
.btn-primary:active {
 box-shadow: inset 6px 6px 12px #48657c, inset -6px -6px 12px #6c97ba;
}
.btn-secondary {
 background: var(--bg-color);
 color: var(--text-color);
 box-shadow: 6px 6px 12px var(--dark-shadow), -6px -6px 12px var(--light-shadow);
}
.btn-secondary:active, .btn-secondary:hover {
 box-shadow: inset 4px 4px 8px var(--dark-shadow), inset -4px -4px 8px var(--light-shadow);
}
.btn-full-width {
 width: 100%;
}

/* SECTION HEADER */
.section-header {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 60px;
}
.section-tagline {
 color: var(--primary-color);
 font-weight: 600;
 display: block;
 margin-bottom: 8px;
}

/* FEATURE CARDS */
.grid-3 {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.grid-4 {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 30px;
}
.feature-card, .value-card, .resource-card {
 background-color: var(--bg-color);
 padding: 30px;
 border-radius: var(--radius-lg);
 box-shadow: 10px 10px 20px var(--dark-shadow), -10px -10px 20px var(--light-shadow);
 transition: var(--transition);
}
.feature-card:hover, .value-card:hover, .resource-card:hover {
 transform: translateY(-5px);
}
.feature-icon {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 20px;
 box-shadow: inset 4px 4px 8px var(--dark-shadow), inset -4px -4px 8px var(--light-shadow);
}
.feature-icon svg {
 width: 28px;
 height: 28px;
 color: var(--primary-color);
}
.feature-title, .value-card h3 {
 margin-bottom: 12px;
}
.feature-text, .value-card p {
 color: var(--text-muted);
}

/* ABOUT SECTION */
.about-section {
 display: grid;
 grid-template-columns: 1fr 1.2fr;
 align-items: center;
 gap: 60px;
}
.about-visual img {
 border-radius: var(--radius-lg);
 box-shadow: 12px 12px 24px var(--dark-shadow), -12px -12px 24px var(--light-shadow);
}
.about-list {
 list-style: none;
 margin: 24px 0;
}
.about-list li {
 padding-left: 25px;
 position: relative;
 margin-bottom: 12px;
}
.about-list li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--primary-color);
 font-weight: 700;
}

/* PROCESS TIMELINE */
.process-timeline {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 30px;
}
.process-step {
 padding: 30px;
 border-radius: var(--radius-lg);
 box-shadow: inset 6px 6px 12px var(--dark-shadow), inset -6px -6px 12px var(--light-shadow);
 text-align: center;
}
.process-number {
 width: 50px;
 height: 50px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 20px;
 font-size: 1.2rem;
 font-weight: 700;
 color: var(--primary-color);
 box-shadow: 6px 6px 12px var(--dark-shadow), -6px -6px 12px var(--light-shadow);
}
.process-content h3 {
 margin-bottom: 10px;
}

/* RESOURCE CARDS */
.resource-card {
 display: flex;
 flex-direction: column;
}
.resource-image img {
 border-radius: var(--radius-md);
 width: 100%;
 height: 200px;
 object-fit: cover;
 margin-bottom: 20px;
}
.resource-content {
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}
.resource-category {
 font-size: 0.85rem;
 color: var(--primary-color);
 font-weight: 600;
 margin-bottom: 8px;
}
.resource-title {
 margin-bottom: 10px;
 font-size: 1.1rem;
}
.resource-text {
 color: var(--text-muted);
 flex-grow: 1;
 margin-bottom: 16px;
}
.resource-link {
 font-weight: 600;
 align-self: flex-start;
}
.resource-link:hover {
 text-decoration: underline;
}

/* PAGE HEADER */
.page-header-section {
 padding: 160px 0 80px;
 text-align: center;
}
.page-title {
 font-size: 3rem;
 margin-bottom: 16px;
}
.page-subtitle {
 font-size: 1.2rem;
 color: var(--text-muted);
 max-width: 600px;
 margin: 0 auto;
}

/* TEAM SECTION */
.team-member-card {
 text-align: center;
 padding: 30px;
 border-radius: var(--radius-lg);
 background-color: var(--bg-color);
 box-shadow: 10px 10px 20px var(--dark-shadow), -10px -10px 20px var(--light-shadow);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 box-shadow: 6px 6px 12px var(--dark-shadow), -6px -6px 12px var(--light-shadow);
}
.team-name {
 margin-bottom: 4px;
}
.team-role {
 color: var(--primary-color);
 font-weight: 500;
 margin-bottom: 12px;
}
.team-bio {
 font-size: 0.9rem;
 color: var(--text-muted);
}

/* PARTNERS SECTION */
.partners-grid {
 display: grid;
 grid-template-columns: repeat(5, 1fr);
 align-items: center;
 gap: 30px;
}
.partner-logo {
 display: flex;
 justify-content: center;
 align-items: center;
 padding: 20px;
 border-radius: var(--radius-md);
 box-shadow: inset 4px 4px 8px var(--dark-shadow), inset -4px -4px 8px var(--light-shadow);
}
.partner-logo img {
 height: 40px;
 width: auto;
 max-width: 120px;
 filter: grayscale(1);
 opacity: 0.7;
 transition: var(--transition);
}
.partner-logo:hover img {
 filter: grayscale(0);
 opacity: 1;
}

/* CONTACT PAGE */
.contact-page-layout {
 display: grid;
 grid-template-columns: 1.5fr 1fr;
 gap: 60px;
}
.contact-form-container, .contact-info-container {
 padding: 40px;
 border-radius: var(--radius-lg);
 background-color: var(--bg-color);
 box-shadow: 10px 10px 20px var(--dark-shadow), -10px -10px 20px var(--light-shadow);
}
.form-group {
 margin-bottom: 20px;
}
.form-label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
}
.form-control {
 width: 100%;
 padding: 15px 20px;
 border: none;
 border-radius: var(--radius-md);
 background: var(--bg-color);
 color: var(--text-color);
 font-family: inherit;
 font-size: 1rem;
 box-shadow: inset 4px 4px 8px var(--dark-shadow), inset -4px -4px 8px var(--light-shadow);
 transition: var(--transition);
}
.form-control:focus {
 outline: none;
 box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow);
}
textarea.form-control {
 resize: vertical;
 min-height: 120px;
}
.contact-info-item {
 margin-bottom: 24px;
}
.contact-info-item h3 {
 margin-bottom: 8px;
}
.contact-info-item p {
 color: var(--text-muted);
 line-height: 1.6;
}
.map-container {
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: 12px 12px 24px var(--dark-shadow), -12px -12px 24px var(--light-shadow);
}

/* THANK YOU PAGE */
.thank-you-section {
 min-height: 60vh;
 display: flex;
 align-items: center;
 justify-content: center;
}
.thank-you-content {
 padding: 60px;
 border-radius: var(--radius-lg);
 background-color: var(--bg-color);
 box-shadow: 10px 10px 20px var(--dark-shadow), -10px -10px 20px var(--light-shadow);
 text-align: center;
}

/* LEGAL PAGES */
.legal-content h2 { margin: 40px 0 16px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { margin: 16px 0; padding-left: 20px; }
.cookie-table {
 width: 100%;
 margin: 30px 0;
 border-collapse: collapse;
}
.cookie-table th, .cookie-table td {
 padding: 15px;
 text-align: left;
 border: 1px solid var(--dark-shadow);
}
.cookie-table th {
 background-color: var(--bg-color);
 box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow);
}

/* FOOTER */
.footer {
 padding: 80px 0 40px;
 margin-top: 80px;
 background-color: var(--bg-color);
 box-shadow: inset 6px 6px 12px var(--dark-shadow), inset -6px -6px 12px var(--light-shadow);
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 30px;
 margin-bottom: 60px;
}
.footer-logo {
 font-size: 1.3rem;
 font-weight: 700;
 color: var(--text-color);
 display: block;
 margin-bottom: 16px;
}
.footer-description, .footer-contact li {
 font-size: 0.9rem;
 color: var(--text-muted);
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 text-transform: uppercase;
 margin-bottom: 20px;
}
.footer-links, .footer-contact {
 list-style: none;
}
.footer-links li, .footer-contact li {
 margin-bottom: 12px;
}
.footer-links a, .footer-contact a {
 color: var(--text-muted);
}
.footer-links a:hover, .footer-contact a:hover {
 color: var(--primary-color);
}
.footer-bottom {
 padding-top: 30px;
 border-top: 1px solid var(--dark-shadow);
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.9rem;
 color: var(--text-muted);
}
.footer-legal a {
 margin-left: 20px;
 color: var(--text-muted);
}

/* COOKIE BANNER */
.cookie-banner {
 position: fixed;
 bottom: 20px;
 left: 20px;
 right: 20px;
 max-width: 500px;
 background-color: var(--bg-color);
 padding: 20px;
 border-radius: var(--radius-lg);
 box-shadow: 12px 12px 24px var(--dark-shadow), -12px -12px 24px var(--light-shadow);
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
}
.cookie-banner p {
 font-size: 0.9rem;
 margin: 0;
}
.cookie-buttons {
 display: flex;
 gap: 10px;
 flex-shrink: 0;
}
.cookie-buttons .btn {
 padding: 8px 16px;
 font-size: 0.85rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
 h1 { font-size: 2.2rem; }
 h2 { font-size: 1.7rem; }
 .hero-container { grid-template-columns: 1fr; text-align: center; }
 .hero-description { margin: 0 auto 32px; }
 .hero-buttons { justify-content: center; }
 .hero-visual { display: none; }
 .grid-3, .grid-4, .process-timeline { grid-template-columns: repeat(2, 1fr); }
 .about-section { grid-template-columns: 1fr; }
 .about-visual { order: -1; margin-bottom: 40px; }
 .contact-page-layout { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
 .nav-menu {
 position: fixed;
 background-color: var(--bg-color);
 box-shadow: 12px 12px 24px var(--dark-shadow);
 top: 0;
 right: -100%;
 width: 60%;
 height: 100vh;
 padding: 100px 40px;
 transition: var(--transition);
 }
 .nav-menu.active { right: 0; }
 .nav-list { flex-direction: column; align-items: flex-start; gap: 30px; }
 .nav-toggle { display: block; z-index: 1001; }
 .nav-toggle.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
 .nav-toggle.active span:nth-child(2) { opacity: 0; }
 .nav-toggle.active span:nth-child(3) { bottom: 11px; transform: rotate(-45deg); }
 .grid-3, .grid-4, .process-timeline, .partners-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 16px; }
 .cookie-banner { flex-direction: column; text-align: center; }
}