:root {
 --primary-color: #1e3a5f;
 --primary-dark: #112239;
 --secondary-color: #d4af37;
 --text-dark: #212529;
 --text-light: #6c757d;
 --bg-light: #f8f9fa;
 --bg-white: #ffffff;
 --border-color: #dee2e6;
 --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
 --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
 --shadow-lg: 0 15px 30px rgba(0,0,0,0.1);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', sans-serif;
 --font-display: 'Playfair Display', serif;
}

*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-dark);
 background-color: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-display);
 font-weight: 700;
 line-height: 1.3;
 color: var(--text-dark);
}

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

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

a:hover {
 color: var(--primary-dark);
}

.section {
 padding: 100px 0;
}

.section.bg-light {
 background-color: var(--bg-light);
}

.section-header {
 text-align: center;
 max-width: 750px;
 margin: 0 auto 60px;
}

.section-label {
 display: inline-block;
 font-family: var(--font-main);
 font-size: 0.8rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1px;
 color: var(--secondary-color);
 margin-bottom: 16px;
}

.section-title {
 font-size: clamp(2rem, 5vw, 2.75rem);
 margin-bottom: 16px;
}

.section-subtitle {
 font-size: 1.1rem;
 color: var(--text-light);
 line-height: 1.6;
}

/* Header & Nav */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255,255,255,0.8);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid transparent;
 transition: var(--transition);
}

.header.scrolled {
 background: rgba(255,255,255,0.95);
 box-shadow: var(--shadow-md);
}

.nav {
 height: 80px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.nav-logo {
 font-size: 1.75rem;
 font-weight: 700;
 color: var(--text-dark);
 font-family: var(--font-display);
}
.nav-logo:hover {
 color: var(--primary-color);
}

.nav-links {
 display: flex;
 gap: 36px;
 list-style: none;
}

.nav-links a {
 font-weight: 500;
 color: var(--text-dark);
 padding: 8px 0;
 position: relative;
}

.nav-links a::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--primary-color);
 transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
}

.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background: var(--text-dark);
 margin: 5px;
 transition: all 0.3s;
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 12px 28px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-sm);
 cursor: pointer;
 transition: var(--transition);
 border: 2px solid transparent;
 text-align: center;
}

.btn-primary {
 background-color: var(--primary-color);
 color: var(--bg-white);
 border-color: var(--primary-color);
}

.btn-primary:hover {
 background-color: var(--primary-dark);
 color: var(--bg-white);
 border-color: var(--primary-dark);
 transform: translateY(-2px);
}

.btn-secondary {
 background-color: transparent;
 color: var(--text-dark);
 border-color: var(--border-color);
}

.btn-secondary:hover {
 background-color: var(--text-dark);
 color: var(--bg-white);
 border-color: var(--text-dark);
}

.btn-white {
 background-color: var(--bg-white);
 color: var(--primary-color);
 border-color: var(--bg-white);
}

.btn-white:hover {
 background-color: transparent;
 color: var(--bg-white);
}

/* Hero Section */
.hero {
 position: relative;
 min-height: 85vh;
 display: flex;
 align-items: center;
 justify-content: center;
 background-size: cover;
 background-position: center;
 text-align: center;
 padding: 100px 20px;
 color: var(--bg-white);
}

.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-content {
 position: relative;
 max-width: 800px;
}

.hero-title {
 font-size: clamp(2.5rem, 6vw, 4rem);
 color: var(--bg-white);
 margin-bottom: 20px;
}

.hero-subtitle {
 font-size: clamp(1.1rem, 3vw, 1.25rem);
 max-width: 600px;
 margin: 0 auto 30px;
 line-height: 1.6;
 opacity: 0.9;
}

.hero-actions {
 display: flex;
 gap: 16px;
 justify-content: center;
}

/* Stats Section */
.stats-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
 margin-top: 50px;
}

.stat-item {
 text-align: center;
 padding: 20px;
}

.stat-item .stat-icon {
 color: var(--primary-color);
 margin-bottom: 20px;
}
.stat-item .stat-icon svg {
 width: 48px;
 height: 48px;
}

.stat-item h3 {
 font-size: 1.25rem;
 margin-bottom: 10px;
 font-family: var(--font-main);
}

.stat-item p {
 color: var(--text-light);
}

/* Cards Grid */
.cards-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
 gap: 30px;
}

.card {
 background-color: var(--bg-white);
 border-radius: var(--radius-sm);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 border: 1px solid var(--border-color);
 position: relative;
}
.card::before {
 content: '';
 position: absolute;
 inset: 8px;
 border: 1px solid rgba(0,0,0,0.07);
 border-radius: 0;
 pointer-events: none;
 transition: var(--transition);
}

.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}

.card:hover::before {
 inset: 5px;
}

.card-image {
 width: 100%;
 height: 220px;
 object-fit: cover;
}

.card-body {
 padding: 24px;
}

.card h3 {
 margin-bottom: 12px;
 font-size: 1.4rem;
}

.card p {
 color: var(--text-light);
 margin-bottom: 20px;
}

.card-link {
 font-weight: 600;
 color: var(--primary-color);
 display: inline-block;
}
.card-link:hover {
 text-decoration: underline;
}

.card-meta {
 font-size: 0.9rem;
 color: var(--text-light);
 margin-bottom: 10px;
}

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
}
.media-object.reverse .media-copy {
 order: 2;
}
.media-object.reverse .media-visual {
 order: 1;
}

.media-visual img {
 border-radius: var(--radius-sm);
 box-shadow: var(--shadow-lg);
}

.media-copy ul {
 list-style: none;
 padding-left: 0;
 margin: 20px 0;
}

.media-copy li {
 padding-left: 25px;
 position: relative;
 margin-bottom: 10px;
}

.media-copy li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--secondary-color);
 font-weight: bold;
}

/* Testimonials */
.testimonials-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
 gap: 30px;
}
.testimonial-card {
 background-color: var(--bg-white);
 padding: 40px;
 border-left: 5px solid var(--primary-color);
 box-shadow: var(--shadow-md);
}
.testimonial-quote {
 font-family: var(--font-display);
 font-size: 1.4rem;
 line-height: 1.6;
 margin-bottom: 30px;
 font-style: italic;
 color: var(--text-dark);
}
.testimonial-author {
 display: flex;
 align-items: center;
 gap: 15px;
}
.author-avatar {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 object-fit: cover;
}
.author-name {
 font-weight: 700;
 margin: 0;
}
.author-title {
 color: var(--text-light);
 font-size: 0.9rem;
 margin: 0;
}

/* CTA Section */
.cta-section {
 background: var(--primary-color);
 color: var(--bg-white);
 padding: 80px 0;
}
.cta-content {
 text-align: center;
 max-width: 700px;
 margin: 0 auto;
}
.cta-title {
 font-size: 2.5rem;
 color: var(--bg-white);
 margin-bottom: 20px;
}
.cta-text {
 opacity: 0.9;
 margin-bottom: 30px;
 line-height: 1.6;
}

/* Footer */
.footer {
 background: var(--bg-light);
 color: var(--text-light);
 padding: 80px 0 30px;
 font-size: 0.9rem;
 margin-top: 100px;
}

.footer-container {
 padding: 0 20px;
}

.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 50px;
 margin-bottom: 50px;
}

.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
 margin-bottom: 16px;
 display: block;
 font-family: var(--font-display);
}

.footer-description {
 line-height: 1.6;
 margin-bottom: 20px;
}

.footer-social {
 display: flex;
 gap: 16px;
}
.footer-social a {
 color: var(--text-light);
}
.footer-social a:hover {
 color: var(--primary-color);
}
.footer-social svg {
 width: 20px;
 height: 20px;
}

.footer-heading {
 font-size: 1rem;
 font-weight: 700;
 color: var(--text-dark);
 margin-bottom: 20px;
 font-family: var(--font-main);
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.footer-links {
 list-style: none;
}

.footer-links li {
 margin-bottom: 12px;
}

.footer-links a {
 color: var(--text-light);
}

.footer-links a:hover {
 color: var(--primary-color);
 text-decoration: underline;
}

.footer-contact-item {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 margin-bottom: 16px;
}

.footer-contact-item svg {
 width: 18px;
 height: 18px;
 flex-shrink: 0;
 margin-top: 4px;
 color: var(--primary-color);
}

.footer-contact-item a {
 color: var(--text-light);
}
.footer-contact-item a:hover {
 color: var(--primary-color);
}

.footer-divider {
 height: 1px;
 background: var(--border-color);
 margin: 40px 0;
}

.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 16px;
}

.footer-copyright {
 font-size: 0.85rem;
}

.footer-legal-links {
 display: flex;
 gap: 24px;
}

.footer-legal-links a {
 font-size: 0.85rem;
 color: var(--text-light);
}

/* Page Header */
.page-header-section {
 padding: 140px 0 80px;
 background: var(--bg-light);
 text-align: center;
}
.page-title {
 font-size: 3rem;
 margin-bottom: 10px;
}
.page-subtitle {
 font-size: 1.2rem;
 color: var(--text-light);
 max-width: 600px;
 margin: 0 auto;
}

/* Team Section */
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 30px;
}
.team-card {
 text-align: center;
 padding: 30px;
}
.team-photo {
 width: 140px;
 height: 140px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 border: 4px solid var(--bg-white);
 box-shadow: var(--shadow-md);
}
.team-name {
 font-size: 1.5rem;
 margin-bottom: 5px;
}
.team-title {
 color: var(--primary-color);
 font-weight: 500;
 margin-bottom: 10px;
}
.team-bio {
 font-size: 0.95rem;
 color: var(--text-light);
}

/* Values */
.values-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
}
.value-item {
 padding: 20px;
}
.value-item h3 {
 font-family: var(--font-main);
 margin-bottom: 10px;
}

/* Timeline */
.timeline {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
}
.timeline::after {
 content: '';
 position: absolute;
 width: 2px;
 background-color: var(--border-color);
 top: 0;
 bottom: 0;
 left: 20px;
}
.timeline-step {
 padding: 10px 40px 30px 60px;
 position: relative;
}
.timeline-number {
 position: absolute;
 left: 0;
 top: 10px;
 width: 42px;
 height: 42px;
 border-radius: 50%;
 background-color: var(--primary-color);
 color: white;
 font-size: 1.2rem;
 font-weight: 700;
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 1;
}

/* Contact Page */
.contact-layout {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 60px;
}
.contact-form-container h3, .contact-info-container h3 {
 margin-bottom: 10px;
}
.contact-form-container p, .contact-info-container p {
 color: var(--text-light);
 margin-bottom: 30px;
}

.form-group {
 margin-bottom: 20px;
}
.form-label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
}
.form-control {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-sm);
 font-size: 1rem;
 font-family: var(--font-main);
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.2);
}
textarea.form-control {
 resize: vertical;
}
.contact-info-item {
 display: flex;
 gap: 20px;
 margin-bottom: 30px;
}
.contact-info-icon {
 flex-shrink: 0;
 width: 40px;
 height: 40px;
 background-color: var(--bg-light);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--primary-color);
}
.contact-info-icon svg {
 width: 20px;
 height: 20px;
}
.contact-info-item strong {
 display: block;
 margin-bottom: 4px;
}
.map-section {
 margin-top: -1px;
}

/* Legal Pages */
.legal-content p {
 margin-bottom: 1.5rem;
}
.legal-content h3 {
 margin-top: 2.5rem;
 margin-bottom: 1rem;
}
.legal-content ul {
 margin: 1.5rem 0;
 padding-left: 25px;
}
.legal-content li {
 margin-bottom: 0.75rem;
}
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin: 2rem 0;
}
.cookie-table th, .cookie-table td {
 border: 1px solid var(--border-color);
 padding: 12px;
 text-align: left;
}
.cookie-table th {
 background-color: var(--bg-light);
}

/* Articles Grid & Pagination */
.articles-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
 gap: 30px;
 margin-bottom: 60px;
}
.pagination {
 display: flex;
 justify-content: center;
 gap: 10px;
 list-style: none;
}
.pagination a {
 padding: 10px 15px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-sm);
 color: var(--text-dark);
}
.pagination a:hover,
.pagination a.active {
 background-color: var(--primary-color);
 color: var(--bg-white);
 border-color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: var(--primary-dark);
 color: var(--bg-white);
 padding: 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 z-index: 2000;
 gap: 20px;
 display: none;
}
.cookie-banner p {
 margin: 0;
}
.cookie-banner a {
 color: var(--secondary-color);
 text-decoration: underline;
}
.cookie-buttons {
 display: flex;
 gap: 10px;
}

/* Animations */
[data-animate] {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animate].animated {
 opacity: 1;
 transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
 .media-object {
 grid-template-columns: 1fr;
 }
 .media-object.reverse .media-copy,
 .media-object .media-copy {
 order: 2;
 }
 .media-object.reverse .media-visual,
 .media-object .media-visual {
 order: 1;
 }
 .footer-grid {
 grid-template-columns: repeat(2, 1fr);
 }
 .contact-layout {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 768px) {
 .section {
 padding: 60px 0;
 }
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 right: 0;
 width: 100%;
 height: 100vh;
 background: var(--bg-white);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 2rem;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 padding: 2rem;
 }
 .nav-links.active { 
 transform: translateX(0); 
 }
 .nav-links a {
 font-size: 1.5rem;
 }
 .hero-title {
 font-size: 2.2rem;
 }
 .hero-subtitle {
 font-size: 1rem;
 }
 .footer-grid {
 grid-template-columns: 1fr;
 }
 .footer-bottom {
 flex-direction: column;
 text-align: center;
 }
 .cookie-banner {
 flex-direction: column;
 text-align: center;
 }
}