@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Lora:wght@500;700&display=swap');

:root {
 --primary-color: #2c5282; /* Deep Academic Blue */
 --primary-dark: #2a4365;
 --secondary-color: #a0aec0; /* Soft Gray */
 --accent-color: #63b3ed; /* Light Blue Accent */
 --text-dark: #2d3748;
 --text-light: #4a5568;
 --text-muted: #718096;
 --bg-light: #f7fafc;
 --bg-dark: #1a202c;
 --bg-white: #ffffff;
 --border-color: #e2e8f0;
 --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', sans-serif;
 --font-headings: 'Lora', serif;
}

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

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

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

h1,h2,h3,h4,h5,h6 {
 font-family: var(--font-headings);
 color: var(--text-dark);
 font-weight: 700;
 line-height: 1.3;
 margin-bottom: 1rem;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style-position: inside; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header & Nav */
#scroll-progress-bar {
 position: fixed;
 top: 0;
 left: 0;
 height: 4px;
 background: var(--accent-color);
 width: 0%;
 z-index: 1001;
 transition: width 0.1s linear;
}
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.8);
 backdrop-filter: blur(10px);
 box-shadow: none;
 transition: var(--transition);
}
.header.scrolled {
 background: rgba(255, 255, 255, 0.95);
 box-shadow: var(--shadow-md); 
}
.nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 height: 80px;
}
.nav-logo {
 font-family: var(--font-headings);
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
 transition: transform 0.3s ease;
}
.nav-logo:hover {
 transform: scale(1.05);
 color: var(--primary-color);
}
.nav-links {
 display: flex;
 align-items: center;
 gap: 32px;
 list-style: none;
}
.nav-links a:not(.btn) {
 font-weight: 500;
 color: var(--text-dark);
 position: relative;
 padding: 8px 4px;
}
.nav-links a:not(.btn)::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 0;
 height: 2px;
 background-color: var(--primary-color);
 transition: var(--transition);
}
.nav-links a:hover:not(.btn)::after,
.nav-links a.active:not(.btn)::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-color: var(--text-dark);
 margin: 6px 0;
 transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Buttons */
.btn {
 display: inline-block;
 padding: 12px 28px;
 font-weight: 700;
 border-radius: var(--radius-md);
 border: 2px solid transparent;
 cursor: pointer;
 transition: var(--transition);
 text-align: center;
}
.btn-primary {
 background: var(--primary-color);
 color: var(--bg-white);
 box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
 background: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}
.btn-secondary {
 background: transparent;
 border-color: var(--bg-white);
 color: var(--bg-white);
}
.btn-secondary:hover {
 background: var(--bg-white);
 color: var(--primary-color);
}
.btn-full { width: 100%; }

/* Hero Showcase */
.hero-showcase {
 position: relative;
 height: 90vh;
 min-height: 600px;
 color: var(--bg-white);
 overflow: hidden;
}
.hero-slider {
 width: 100%;
 height: 100%;
}
.hero-slide {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-size: cover;
 background-position: center;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 opacity: 0;
 transition: opacity 1.5s ease;
 z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2;}
.hero-slide::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}
.hero-content {
 position: relative;
 z-index: 3;
 max-width: 800px;
 padding: 0 24px;
}
.hero-content .badge {
 background-color: var(--accent-color);
 color: var(--bg-white);
 padding: 8px 16px;
 border-radius: 20px;
 font-weight: 700;
 margin-bottom: 1rem;
 display: inline-block;
}
.hero-content h1, .hero-content h2 { color: var(--bg-white); }
.hero-content p { font-size: 1.25rem; opacity: 0.9; }
.hero-actions { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; }
.hero-thumbnails {
 position: absolute;
 bottom: 30px;
 left: 50%;
 transform: translateX(-50%);
 display: flex;
 gap: 1rem;
 z-index: 5;
 background: rgba(0,0,0,0.3);
 padding: 10px;
 border-radius: var(--radius-md);
}
.thumb {
 width: 120px;
 height: 70px;
 cursor: pointer;
 border-radius: var(--radius-sm);
 overflow: hidden;
 border: 2px solid transparent;
 transition: var(--transition);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover, .thumb.active { border-color: var(--accent-color); transform: scale(1.05); }

/* Sections */
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--bg-light); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--bg-white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-label {
 display: inline-block;
 background-color: var(--primary-color);
 color: white;
 padding: 6px 16px;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 600;
 margin-bottom: 16px;
}
.section-title { font-size: 2.25rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); }

/* Featured Section */
.featured-grid {
 display: grid;
 grid-template-columns: 1fr 1.5fr 1fr;
 gap: 2rem;
 align-items: center;
}
.feature-card {
 background-color: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 overflow: hidden;
 height: 400px;
 position: relative;
 transition: var(--transition);
}
.feature-card-image {
 position: absolute;
 inset: 0;
 background-size: cover;
 background-position: center;
 transition: transform 0.5s ease;
}
.feature-card-content {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 padding: 2rem;
 background: linear-gradient(transparent, rgba(0,0,0,0.8));
 color: white;
 transform: translateY(40%);
 transition: var(--transition);
}
.feature-card h3 { color: white; margin-bottom: 0.5rem; }
.feature-card p { opacity: 0; transition: opacity 0.3s ease 0.1s; }
.read-more-link { color: var(--accent-color); font-weight: 700; text-decoration: none; opacity: 0; transition: opacity 0.3s ease 0.2s;}
.feature-card:hover {
 box-shadow: var(--shadow-lg);
}
.feature-card:hover .feature-card-content {
 transform: translateY(0);
}
.feature-card:hover .feature-card-image {
 transform: scale(1.05);
}
.feature-card:hover p, .feature-card:hover .read-more-link {
 opacity: 1;
}
.main-feature {
 height: 500px;
 transform: scale(1.05);
}

/* Hexagon Showcase */
.hexagon-grid {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 1rem;
 margin-top: 4rem;
}
.hexagon {
 position: relative;
 width: 150px;
 height: 173.2px;
 background-color: var(--primary-color);
 clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
 display: flex;
 align-items: center;
 justify-content: center;
 transition: var(--transition);
 animation: fadeIn 0.5s ease-out forwards;
}
.hexagon .hex-content {
 color: white;
 font-size: 1.1rem;
 font-weight: 700;
 text-align: center;
 transition: var(--transition);
 font-family: var(--font-headings);
}
.hexagon:hover {
 background-color: var(--accent-color);
 transform: scale(1.1);
}

/* Video Section */
.video-player {
 position: relative;
 max-width: 1000px;
 margin: 0 auto;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
 cursor: pointer;
}
.video-player img { width: 100%; border-radius: var(--radius-lg); }
.play-button {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 100px;
 height: 100px;
 background-color: rgba(255,255,255, 0.2);
 border-radius: 50%;
 backdrop-filter: blur(5px);
 display: flex;
 align-items: center;
 justify-content: center;
 transition: var(--transition);
}
.play-button svg {
 width: 50%;
 height: 50%;
 fill: white;
}
.video-player:hover .play-button {
 transform: translate(-50%, -50%) scale(1.1);
 background-color: rgba(var(--accent-color), 0.8);
}

/* Reviews Section */
.reviews-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
}
.review-card {
 background-color: transparent;
 perspective: 1000px;
 height: 250px;
}
.review-card-inner {
 position: relative;
 width: 100%;
 height: 100%;
 text-align: center;
 transition: transform 0.6s;
 transform-style: preserve-3d;
}
.review-card:hover .review-card-inner {
 transform: rotateY(180deg);
}
.review-card-front, .review-card-back {
 position: absolute;
 width: 100%;
 height: 100%;
 -webkit-backface-visibility: hidden;
 backface-visibility: hidden;
 border-radius: var(--radius-lg);
 padding: 2rem;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}
.review-card-front {
 background-color: var(--bg-white);
 box-shadow: var(--shadow-md);
 color: var(--text-dark);
}
.review-card-front img {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
 margin-bottom: 1rem;
 box-shadow: var(--shadow-sm);
}
.review-card-front .stars {
 color: #f6ad55;
 font-size: 1.25rem;
 margin-top: 0.5rem;
}
.review-card-back {
 background: var(--primary-color);
 color: white;
 transform: rotateY(180deg);
 box-shadow: var(--shadow-md);
}

/* Connect Section */
.connect-section { background: var(--bg-light); }
.connect-content {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 align-items: center;
 background: var(--bg-white);
 padding: 4rem;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}
.connect-form-visual {
 background: var(--bg-light);
 padding: 2rem;
 border-radius: var(--radius-md);
}
.animated-form .form-group {
 position: relative;
 margin-bottom: 2rem;
}
.animated-form input {
 width: 100%;
 padding: 10px 0;
 font-size: 1rem;
 color: var(--text-dark);
 border: none;
 border-bottom: 2px solid var(--secondary-color);
 outline: none;
 background: transparent;
}
.animated-form label {
 position: absolute;
 top: 10px;
 left: 0;
 font-size: 1rem;
 color: var(--text-muted);
 pointer-events: none;
 transition: 0.3s ease all;
}
.animated-form input:focus ~ label,
.animated-form input:valid ~ label {
 top: -15px;
 font-size: 0.85rem;
 color: var(--primary-color);
}

/* Footer */
.footer {
 background-color: var(--bg-dark);
 color: var(--secondary-color);
 padding: 80px 0 30px;
 font-size: 0.9rem;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo { color: var(--bg-white); font-size: 1.5rem; font-family: var(--font-headings); margin-bottom: 1rem; }
.footer-heading {
 color: var(--bg-white);
 font-size: 1rem;
 font-weight: 700;
 margin-bottom: 1.5rem;
 text-transform: uppercase;
 letter-spacing: 1px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: var(--secondary-color); }
.footer-links a:hover { color: var(--bg-white); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.footer-contact-item svg { width: 20px; color: var(--accent-color); flex-shrink: 0; margin-top: 4px; }
.footer-contact-item a { color: var(--secondary-color); }
.footer-contact-item a:hover { color: var(--bg-white); }
.footer-hours { margin-bottom: 1rem; }
.footer-disclaimer { font-size: 0.8rem; opacity: 0.7; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
 width: 40px; height: 40px;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(255,255,255,0.1);
 border-radius: 50%;
 color: var(--bg-white);
}
.footer-social a:hover { background: var(--accent-color); transform: translateY(-3px); }
.footer-bottom {
 border-top: 1px solid rgba(255,255,255,0.1);
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
}
.footer-legal-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-legal-links a { font-size: 0.85rem; color: var(--secondary-color); }
.footer-legal-links a:hover { color: var(--bg-white); }

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--bg-dark);
 color: var(--bg-light);
 padding: 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
 z-index: 1001;
 gap: 20px;
 display: none;
}
#cookie-banner p { margin: 0; }
#cookie-banner a { color: var(--accent-color); }
.cookie-buttons { display: flex; gap: 10px; }
#cookie-banner .btn { padding: 8px 20px; }

/* About Page */
.page-header-section {
 background-color: var(--primary-color);
 color: var(--bg-white);
 padding: 140px 0 60px;
 text-align: center;
}
.page-header-section h1 { color: var(--bg-white); }
.page-header-section .subtitle { font-size: 1.25rem; opacity: 0.9; max-width: 700px; margin: 0 auto;}
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;}
.content-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.value-card {
 background-color: var(--bg-white);
 padding: 2rem;
 border-radius: var(--radius-md);
 text-align: center;
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon {
 width: 60px; height: 60px;
 margin: 0 auto 1.5rem;
 background-color: var(--primary-dark);
 color: var(--bg-white);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}
.value-icon svg { width: 30px; height: 30px; }
.team-section { background-color: var(--bg-light); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;}
.team-member {
 background: var(--bg-white);
 padding: 1.5rem;
 border-radius: var(--radius-lg);
 text-align: center;
 box-shadow: var(--shadow-md);
 transition: var(--transition);
}
.team-member:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.team-photo {
 width: 120px; height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1rem;
 border: 4px solid var(--accent-color);
}
.team-role { color: var(--primary-color); font-weight: 700; margin-bottom: 0.5rem; }
.team-bio { font-size: 0.9rem; color: var(--text-muted); }

/* Articles & Culture Pages */
.filter-search-bar { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap;}
.filter-search-bar input[type="search"], .filter-search-bar select {
 flex-grow: 1;
 padding: 14px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
}
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.article-card {
 background-color: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 overflow: hidden;
 display: flex;
 flex-direction: column;
 transition: var(--transition);
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.article-card-image { height: 200px; object-fit: cover; width: 100%; }
.article-card-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.article-category {
 font-size: 0.8rem;
 font-weight: 700;
 color: var(--primary-color);
 text-transform: uppercase;
 margin-bottom: 0.5rem;
}
.article-card-content h3 { font-size: 1.25rem; margin-top: 0; }
.article-card-content p { flex-grow: 1; margin-bottom: 1rem; }
.article-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.read-more-link { font-weight: 700; color: var(--primary-color); }
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a {
 padding: 10px 15px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 color: var(--primary-color);
 font-weight: 500;
}
.pagination a:hover { background-color: var(--bg-light); }
.pagination a.active { background-color: var(--primary-color); color: var(--bg-white); border-color: var(--primary-color);}

/* Contact Page */
.contact-page-grid { display: grid; grid-template-columns: 2fr 1.5fr; gap: 3rem; }
.contact-form-container form { margin-top: 2rem; }
.form-group-row { display: flex; gap: 1rem; }
.form-group { margin-bottom: 1.5rem; width: 100%; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
 width: 100%;
 padding: 14px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
 font-family: var(--font-main);
 transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.2);
}
textarea { resize: vertical; }
.form-consent { display: flex; align-items: center; gap: 0.5rem; }
.form-consent input { width: auto; }
.contact-info-container { background-color: var(--bg-light); padding: 2rem; border-radius: var(--radius-lg); }
.contact-info-item { display: flex; gap: 1rem; margin-top: 2rem; }
.contact-info-icon {
 width: 40px; height: 40px; flex-shrink: 0;
 background-color: var(--primary-color); color: white;
 border-radius: 50%; display: grid; place-items: center;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item h4 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.contact-info-item p { margin-bottom: 0; }
.map-container {
 width: 100%; height: 450px;
 border-radius: var(--radius-lg); overflow: hidden;
 box-shadow: var(--shadow-lg);
}

/* Legal & Thank you pages */
.legal-page { padding: 80px 0; }
.legal-content, .thank-you-section .container { max-width: 800px; }
.legal-content h2 { margin-top: 2rem; border-bottom: 2px solid var(--primary-color); padding-bottom: 0.5rem;}
.legal-content ul, .legal-content ol { margin-left: 2rem; margin-bottom: 1rem; }
.cookie-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.cookie-table th, .cookie-table td { padding: 12px; border: 1px solid var(--border-color); text-align: left; }
.cookie-table th { background: var(--bg-light); }
.thank-you-section { padding: 120px 0; }
.text-center { text-align: center; }
.thank-you-icon {
 width: 80px; height: 80px;
 background: var(--primary-color); color: white;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 2rem;
}
.thank-you-icon svg { width: 40px; height: 40px; }

/* Responsive */
@media (max-width: 1024px) {
 h1 { font-size: 2.5rem; }
 h2 { font-size: 2rem; }
 .featured-grid { grid-template-columns: 1fr; }
 .main-feature { height: 400px; transform: scale(1); }
 .connect-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
 html { font-size: 15px; }
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 height: 100vh;
 width: 80%;
 max-width: 300px;
 background: var(--bg-white);
 flex-direction: column;
 align-items: flex-start;
 justify-content: flex-start;
 padding: 100px 30px 30px;
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
 }
 .nav-links.active { right: 0; }
 .nav-links li { width: 100%; }
 .nav-links a.nav-cta { width: 100%; }
 .hero-showcase { height: 80vh; }
 .hero-content h1 { font-size: 2rem; }
 .hero-content p { font-size: 1rem; }
 .hero-thumbnails { display: none; }
 .content-grid { grid-template-columns: 1fr; }
 .content-grid .content-image { order: -1; }
 .contact-page-grid { grid-template-columns: 1fr; }
 .form-group-row { flex-direction: column; gap: 0; }
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-social, .footer-bottom { justify-content: center; }
}

@keyframes fadeIn {
 from { opacity: 0; transform: translateY(20px); }
 to { opacity: 1; transform: translateY(0); }
}
.animated-form, .hexagon-grid .hexagon, .values-grid .value-card, .team-grid .team-member, .articles-grid .article-card {
 opacity: 0;
 animation: fadeIn 0.5s ease-out forwards;
}
.hexagon-grid .hexagon:nth-child(2) { animation-delay: 0.1s; }
.hexagon-grid .hexagon:nth-child(3) { animation-delay: 0.2s; }
.hexagon-grid .hexagon:nth-child(4) { animation-delay: 0.3s; }
.hexagon-grid .hexagon:nth-child(5) { animation-delay: 0.4s; }
.hexagon-grid .hexagon:nth-child(6) { animation-delay: 0.5s; }
.hexagon-grid .hexagon:nth-child(7) { animation-delay: 0.6s; }