:root {
 --primary-color: #4f46e5;
 --primary-dark: #4338ca;
 --secondary-color: #3b82f6;
 --text-dark: #1f2937;
 --text-light: #4b5563;
 --text-muted: #6b7280;
 --bg-light: #eef2ff;
 --bg-white: #ffffff;
 --border-color: #d1d5db;

 --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
 
 --radius-sm: 8px;
 --radius-md: 12px;
 --radius-lg: 16px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-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.6;
 color: var(--text-light);
 background-color: var(--bg-white);
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
 color: var(--text-dark);
 font-weight: 700;
 line-height: 1.3;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { 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;
}

ul {
 list-style: none;
}

/* Scroll Progress Bar */
#scroll-progress-bar {
 position: fixed;
 top: 0;
 left: 0;
 height: 4px;
 background: var(--primary-color);
 width: 0%;
 z-index: 2000;
 transition: width 0.1s ease-out;
}

/* Header */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background-color: rgba(255, 255, 255, 0.8);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 transition: background-color 0.3s, box-shadow 0.3s;
 height: 70px;
}
.header.scrolled {
 background-color: rgba(255, 255, 255, 0.95);
 box-shadow: var(--shadow-md);
}
.nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 height: 100%;
}
.nav-logo {
 font-size: 1.5rem;
 font-weight: 800;
 color: var(--text-dark);
 transition: transform 0.3s;
}
.nav-logo:hover {
 transform: scale(1.05);
}
.nav-links {
 display: flex;
 gap: 32px;
}
.nav-link {
 font-weight: 600;
 color: var(--text-light);
 position: relative;
 padding: 8px 4px;
}
.nav-link::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 3px;
 background-color: var(--primary-color);
 transition: width 0.3s ease;
 border-radius: 2px;
}
.nav-link:hover,
.nav-link.active {
 color: var(--text-dark);
}
.nav-link:hover::after,
.nav-link.active::after {
 width: 100%;
}
.nav-toggle {
 display: none;
 cursor: pointer;
 background: transparent;
 border: none;
 z-index: 1001;
}
.nav-toggle span {
 display: block;
 width: 25px;
 height: 3px;
 margin: 5px;
 background: var(--text-dark);
 transition: var(--transition);
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 12px 28px;
 border-radius: var(--radius-sm);
 font-weight: 600;
 font-size: 1rem;
 cursor: pointer;
 text-align: center;
 border: 2px solid transparent;
 transition: var(--transition);
}
.btn-primary {
 background-color: var(--primary-color);
 color: #fff;
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: var(--shadow-lg);
}
.btn-secondary {
 background-color: transparent;
 color: var(--primary-color);
 border-color: var(--primary-color);
}
.btn-secondary:hover {
 background-color: var(--primary-color);
 color: #fff;
 transform: translateY(-2px);
}
.btn-white {
 background: var(--bg-white);
 color: var(--primary-color);
 border-color: var(--bg-white);
}
.btn-white:hover {
 background: var(--bg-light);
 transform: translateY(-2px);
}

/* Hero Showcase */
.hero-showcase {
 position: relative;
 height: 100vh;
 min-height: 600px;
 display: flex;
 align-items: center;
 color: #fff;
 overflow: hidden;
}
.hero-slides {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}
.hero-slide {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-size: cover;
 background-position: center;
 opacity: 0;
 transition: opacity 1s ease-in-out;
 transform: scale(1.1);
}
.hero-slide.active {
 opacity: 1;
 transform: scale(1);
 transition: opacity 1s ease-in-out, transform 8s linear;
}
.hero-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}
.hero-content {
 position: relative;
 z-index: 2;
 text-align: center;
}
.hero-text-slider {
 position: relative;
}
.hero-text-item {
 display: none;
}
.hero-text-item.active {
 display: block;
 animation: fadeInUp 0.8s ease;
}
.hero-title {
 font-size: clamp(2.5rem, 5vw, 4rem);
 font-weight: 800;
 margin-bottom: 1rem;
 color: #fff;
 text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-subtitle {
 font-size: 1.25rem;
 max-width: 600px;
 margin: 0 auto 2rem;
 color: rgba(255, 255, 255, 0.9);
}
.hero-actions {
 display: flex;
 gap: 1rem;
 justify-content: center;
}
.hero-thumbnails {
 position: absolute;
 bottom: 20px;
 left: 50%;
 transform: translateX(-50%);
 display: flex;
 gap: 10px;
 z-index: 3;
 background: rgba(0,0,0,0.3);
 padding: 10px;
 border-radius: var(--radius-md);
}
.thumb {
 width: 100px;
 height: 60px;
 cursor: pointer;
 border: 2px solid transparent;
 border-radius: var(--radius-sm);
 overflow: hidden;
 transition: var(--transition);
}
.thumb.active {
 border-color: var(--primary-color);
 transform: scale(1.1);
}
.thumb img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

/* General Section Styling */
.section {
 padding: 80px 0;
}
.bg-light {
 background-color: var(--bg-light);
}
.section-header {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 60px;
}
.section-label {
 display: inline-block;
 padding: 6px 16px;
 background-color: var(--primary-color);
 color: #fff;
 border-radius: 20px;
 font-weight: 600;
 font-size: 0.9rem;
 margin-bottom: 1rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.section-title {
 margin-bottom: 1rem;
}
.section-subtitle {
 font-size: 1.1rem;
}

/* Page Header */
.page-header-section {
 padding: 120px 0 60px;
 text-align: center;
}
body > main > section.page-header-section.bg-light > div > h1, 
.page-title {
 font-size: 2.8rem;
 color: var(--text-dark);
}
.page-subtitle {
 font-size: 1.2rem;
 color: var(--text-light);
 max-width: 600px;
 margin: 1rem auto 0;
}

/* Featured Section */
.featured-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 30px;
}
.feature-card {
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 transition: var(--transition);
}
.feature-card-img {
 height: 200px;
 width: 100%;
 object-fit: cover;
}
.feature-card-content {
 padding: 24px;
}
.feature-card h3 {
 margin-bottom: 0.75rem;
}
.feature-card p {
 margin-bottom: 1.5rem;
}
.card-button {
 display: inline-block;
 font-weight: 600;
 color: var(--primary-color);
 padding: 10px 20px;
 border: 2px solid var(--primary-color);
 border-radius: var(--radius-sm);
 transition: var(--transition);
}
.card-button:hover {
 background-color: var(--primary-color);
 color: #fff;
}
.anim-reveal {
 position: relative;
 overflow: hidden;
}
.anim-reveal::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: var(--primary-color);
 transform-origin: right;
 transform: scaleX(1);
 transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
 z-index: 1;
}
.anim-reveal.in-view::before {
 transform: scaleX(0);
}
.feature-card:hover {
 transform: translateY(-10px);
 box-shadow: var(--shadow-lg);
}

/* Hexagon Showcase */
.hexagon-grid {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 10px;
 margin: 0 auto;
 max-width: 800px;
 position: relative;
}
.hexagon {
 position: relative;
 width: 180px;
 height: 208px;
 background-color: var(--bg-light);
 clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 20px;
 font-weight: 600;
 color: var(--text-dark);
 transition: var(--transition);
 cursor: default;
}
.hexagon:hover {
 background-color: var(--primary-color);
 color: #fff;
 transform: scale(1.1);
}

/* In Action Section */
.video-showcase {
 position: relative;
 max-width: 900px;
 margin: 0 auto;
 cursor: pointer;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
}
.video-thumbnail {
 width: 100%;
 display: block;
}
.play-button-outer {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 100px;
 height: 100px;
 background: rgba(255, 255, 255, 0.3);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: transform 0.3s;
}
.play-button-inner {
 width: 70px;
 height: 70px;
 background: var(--primary-color);
 color: #fff;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}
.play-button-inner svg {
 width: 30px;
 height: 30px;
 fill: currentColor;
 transform: translateX(2px);
}
.video-showcase:hover .play-button-outer {
 transform: translate(-50%, -50%) scale(1.1);
}
.video-caption {
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 padding: 15px 20px;
 background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
 color: #fff;
 text-align: center;
 font-size: 0.9rem;
}

/* Reviews Section */
.reviews-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
}
.review-card {
 perspective: 1000px;
 background-color: transparent;
 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;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 padding: 20px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.review-card-front {
 background-color: var(--bg-white);
}
.review-card-front img {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
 margin-bottom: 1rem;
 border: 3px solid var(--primary-color);
}
.review-card-front h4 {
 margin-bottom: 0.25rem;
}
.review-card-front p {
 font-size: 0.9rem;
 color: var(--text-muted);
}
.stars {
 color: #f59e0b;
 font-size: 1.2rem;
 margin-top: 0.5rem;
}
.review-card-back {
 background-color: var(--primary-color);
 color: white;
 transform: rotateY(180deg);
}
.review-card-back p {
 font-size: 1rem;
 line-height: 1.5;
}

/* Animated Form */
.animated-form-wrapper {
 max-width: 600px;
 margin: 0 auto;
 background: var(--bg-white);
 padding: 40px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}
.contact-form .form-group {
 position: relative;
 margin-bottom: 2rem;
}
.contact-form input, .contact-form textarea {
 width: 100%;
 border: none;
 border-bottom: 2px solid var(--border-color);
 padding: 10px 0;
 background: transparent;
 font-size: 1rem;
 color: var(--text-dark);
 position: relative;
 z-index: 1;
}
.contact-form textarea {
 resize: vertical;
 min-height: 80px;
}
.contact-form label {
 position: absolute;
 top: 10px;
 left: 0;
 color: var(--text-muted);
 transition: var(--transition);
 z-index: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form input:valid,
.contact-form textarea:valid {
 outline: none;
 border-bottom-color: var(--primary-color);
}
.contact-form input:focus + label,
.contact-form textarea:focus + label,
.contact-form input:valid + label,
.contact-form textarea:valid + label {
 top: -15px;
 font-size: 0.8rem;
 color: var(--primary-color);
}
.submit-btn {
 width: 100%;
}

/* Footer */
.footer {
 background-color: var(--text-dark);
 color: #a0aec0;
 padding: 80px 0 30px;
 margin-top: 80px;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 800;
 color: #fff;
 margin-bottom: 1rem;
 display: inline-block;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.7;
 margin-bottom: 1.5rem;
}
.footer-social {
 display: flex;
 gap: 15px;
}
.footer-social a {
 color: #a0aec0;
 transition: var(--transition);
}
.footer-social a:hover {
 color: #fff;
 transform: translateY(-3px);
}
.footer-heading {
 font-size: 1rem;
 font-weight: 700;
 color: #fff;
 margin-bottom: 1.5rem;
 text-transform: uppercase;
 letter-spacing: 1px;
}

.footer-links li:not(:last-child),
.footer-contact li:not(:last-child) {
 margin-bottom: 1rem;
}
.footer-links a, .footer-contact a {
 color: #a0aec0;
}
.footer-links a:hover, .footer-contact a:hover {
 color: #fff;
 text-decoration: underline;
}
.footer-contact li {
 display: flex;
 align-items: flex-start;
 gap: 10px;
}
.footer-contact svg {
 width: 20px;
 height: 20px;
 color: var(--primary-color);
 flex-shrink: 0;
 margin-top: 2px;
}
.footer-bottom {
 border-top: 1px solid #4a5568;
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.9rem;
}
.footer-legal-links a {
 margin-left: 20px;
 color: #a0aec0;
}
.footer-legal-links a:hover {
 color: #fff;
}

/* About Page */
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
}
.team-card {
 text-align: center;
 padding: 24px;
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
}
.team-card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 margin: 0 auto 1rem;
 object-fit: cover;
 border: 4px solid var(--primary-color);
}
.team-name {
 margin-bottom: 0.25rem;
 font-size: 1.2rem;
}
.team-title {
 color: var(--primary-color);
 font-weight: 600;
 margin-bottom: 0.75rem;
}
.team-bio {
 font-size: 0.9rem;
}
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
}
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}
.media-copy ul {
 list-style: none;
 padding-left: 0;
 margin-top: 1.5rem;
}
.media-copy li {
 padding-left: 25px;
 position: relative;
 margin-bottom: 0.75rem;
}
.media-copy li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--primary-color);
 font-weight: bold;
}
.values-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
}
.value-card {
 padding: 30px;
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 border-left: 5px solid var(--primary-color);
 box-shadow: var(--shadow-md);
}

/* Services Page */
.services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
 gap: 30px;
}
.service-card {
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 display: flex;
 flex-direction: column;
}
.service-card:hover {
 transform: translateY(-10px);
 box-shadow: var(--shadow-lg);
}
.service-card-img {
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.service-card-body {
 padding: 24px;
 flex-grow: 1;
}
.service-card h3 {
 margin-bottom: 1rem;
}
.timeline {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
}
.timeline::after {
 content: '';
 position: absolute;
 width: 4px;
 background-color: var(--border-color);
 top: 0;
 bottom: 0;
 left: 50%;
 margin-left: -2px;
}
.timeline-item {
 padding: 10px 40px;
 position: relative;
 width: 50%;
}
.timeline-item:nth-child(odd) {
 left: 0;
 text-align: right;
}
.timeline-item:nth-child(even) {
 left: 50%;
}
.timeline-item::after {
 content: '';
 position: absolute;
 width: 20px;
 height: 20px;
 background: var(--bg-white);
 border: 4px solid var(--primary-color);
 top: 24px;
 border-radius: 50%;
 z-index: 1;
}
.timeline-item:nth-child(odd)::after {
 right: -10px;
}
.timeline-item:nth-child(even)::after {
 left: -10px;
}
.timeline-content {
 padding: 20px 30px;
 background: var(--bg-white);
 position: relative;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-md);
}
.timeline-step {
 font-size: 1.2rem;
 font-weight: bold;
 color: var(--primary-color);
 margin-bottom: 0.5rem;
}
.cta-section-alt {
 background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
 color: #fff;
 padding: 60px 0;
 text-align: center;
 border-radius: var(--radius-lg);
 margin: 80px auto;
 max-width: 1200px;
}
.cta-section-alt h2 { color: #fff; }

/* Contact Page */
.contact-page-grid {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 60px;
}
.contact-section-title {
 margin-bottom: 2rem;
 border-bottom: 3px solid var(--primary-color);
 padding-bottom: 0.5rem;
 display: inline-block;
}
.form-group-split {
 display: flex;
 gap: 20px;
}
.form-group-split .form-group {
 width: 100%;
}
.contact-details-list li {
 display: flex;
 align-items: flex-start;
 gap: 15px;
 margin-bottom: 1.5rem;
}
.contact-details-list svg {
 color: var(--primary-color);
 width: 24px;
 height: 24px;
 flex-shrink: 0;
}
.contact-details-list h4 {
 margin-bottom: 0.25rem;
}
.map-section {
 padding-bottom: 0;
}
.map-container {
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
 line-height: 0;
}

/* Legal & Thank You Pages */
.legal-content {
 max-width: 800px;
 margin: 0 auto;
}
.legal-content h2 {
 margin-top: 2rem;
 margin-bottom: 1rem;
}
.legal-content p, .legal-content li {
 margin-bottom: 1rem;
 line-height: 1.7;
}
.legal-content ul {
 list-style: disc;
 padding-left: 20px;
}
.cookie-table {
 width: 100%;
 margin: 2rem 0;
 border-collapse: collapse;
}
.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);
}
.thank-you-section {
 min-height: calc(100vh - 400px);
 display: flex;
 align-items: center;
 justify-content: center;
}
.text-center {
 text-align: center;
}

/* Animations */
.anim-fade-up, .anim-flip, .anim-reveal {
 opacity: 0;
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.anim-fade-up {
 transform: translateY(30px);
}
.anim-fade-up.in-view {
 opacity: 1;
 transform: translateY(0);
}
.anim-flip {
 transform: rotateY(-90deg);
}
.anim-flip.in-view {
 opacity: 1;
 transform: rotateY(0);
}

@keyframes fadeInUp {
 from { opacity: 0; transform: translateY(20px); }
 to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 992px) {
 .media-object {
 grid-template-columns: 1fr;
 }
 .media-visual {
 order: -1;
 }
 .contact-page-grid {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 768px) {
 h1 { font-size: 2.5rem; }
 h2 { font-size: 1.8rem; }
 
 .nav-toggle {
 display: block;
 }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 80%;
 height: 100vh;
 background-color: var(--bg-white);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 2rem;
 transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 }
 .nav-links.active {
 right: 0;
 }
 .nav-toggle.active span:nth-child(1) {
 transform: rotate(45deg) translate(5px, 6px);
 }
 .nav-toggle.active span:nth-child(2) {
 opacity: 0;
 }
 .nav-toggle.active span:nth-child(3) {
 transform: rotate(-45deg) translate(5px, -6px);
 }

 .hero-showcase {
 height: 80vh;
 }
 
 .timeline::after {
 left: 31px;
 }
 .timeline-item {
 width: 100%;
 padding-left: 70px;
 padding-right: 25px;
 }
 .timeline-item:nth-child(odd) {
 left: 0;
 text-align: left;
 }
 .timeline-item:nth-child(even) {
 left: 0;
 }
 .timeline-item::after {
 left: 21px;
 }
 .timeline-item:nth-child(odd)::after, .timeline-item:nth-child(even)::after {
 right: auto;
 left: 21px;
 }

 .footer-grid {
 grid-template-columns: 1fr;
 text-align: center;
 }
 .footer-social {
 justify-content: center;
 }
 .footer-contact li {
 justify-content: center;
 }
 .footer-bottom {
 flex-direction: column;
 gap: 15px;
 }
}