:root {
    /* Primary colors */
    --primary-color: #2d5d7b;
    --primary-dark: #1d4962;
    --primary-light: #3e7ca3;
    
    /* Secondary colors */
    --secondary-color: #d9a566;
    --secondary-dark: #b78545;
    --secondary-light: #e6b98a;
    
    /* Neutral colors */
    --neutral-900: #212529;
    --neutral-800: #343a40;
    --neutral-700: #495057;
    --neutral-600: #6c757d;
    --neutral-500: #adb5bd;
    --neutral-400: #ced4da;
    --neutral-300: #dee2e6;
    --neutral-200: #e9ecef;
    --neutral-100: #f8f9fa;
    
    /* Text colors */
    --text-dark: #333333;
    --text-medium: #6c757d;
    --text-light: #f8f9fa;
    
    /* Additional colors */
    --success: #4BB543;
    --warning: #FFC107;
    --error: #DC3545;
    --info: #0DCAF0;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
}

/* Base styles */
body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--neutral-100);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--neutral-800);
    font-weight: 600;
    line-height: 1.3;
}

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

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

/* Buttons */
.btn, button, input[type='submit'] {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1.5rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn::before, button::before, input[type='submit']::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform var(--transition-medium);
    z-index: -1;
}

.btn:hover::before, button:hover::before, input[type='submit']:hover::before {
    transform: translateX(0);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Card styles */
.card {
    border-radius: var(--border-radius-md);
    border: none;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    width: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Section titles */
.section-title {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 1rem;
    text-align: center;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto 2rem;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: var(--primary-color);
    left: -20px;
    top: 0;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-600);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all var(--transition-medium);
    z-index: 1000;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all var(--transition-medium);
}

.header.scrolled .navbar-brand img {
    height: 45px;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--neutral-800);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}

.hero-section::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));
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        /*opacity: 0;*/
        transform: translateX(-50%) translateY(20px);
    }
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.retro-grid {
    position: relative;
}

.retro-grid::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, var(--neutral-200) 1px, transparent 1px),
                      linear-gradient(to bottom, var(--neutral-200) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    transform: skew(-5deg);
    z-index: -1;
}

.mission-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transform: rotate(-3deg);
}

.mission-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius-md);
    transform: rotate(3deg);
    z-index: -1;
}

.mission-content {
    padding: 2rem;
}

.mission-title {
    font-size: 2rem;
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
    position: relative;
}

.mission-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

.mission-text {
    color: var(--neutral-700);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.mission-stats {
    margin-top: 2rem;
}

.progress-container {
    margin-bottom: 1.5rem;
}

.progress-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.progress {
    height: 10px;
    border-radius: var(--border-radius-sm);
    background-color: var(--neutral-200);
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary-color);
    transition: width 1.5s ease;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--neutral-100);
    position: relative;
    overflow: hidden;
}

.feature-card {
    height: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    background-color: white;
}

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

.feature-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.feature-card:hover .card-img-top {
    transform: scale(1.05);
}

.feature-card .card-title {
    font-size: 1.5rem;
    color: var(--neutral-800);
    margin-bottom: 1rem;
    position: relative;
}

.feature-card .card-text {
    color: var(--neutral-700);
    line-height: 1.7;
}

.feature-toggle {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.toggle-label {
    margin-left: 1rem;
    color: var(--neutral-600);
}

/* Switch toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    /*opacity: 0;*/
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--neutral-400);
    transition: var(--transition-fast);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition-fast);
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Methodology Section */
.methodology-section {
    padding: 6rem 0;
    position: relative;
}

.methodology-image {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.methodology-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.methodology-content {
    padding: 2rem;
}

.methodology-step {
    display: flex;
    margin-bottom: 2.5rem;
}

.methodology-step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-right: 1.5rem;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--neutral-700);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background-color: var(--neutral-100);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    width: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 60px;
}

.process-item:last-child {
    padding-bottom: 0;
}

.process-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.process-icon span {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.process-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.process-content h3 {
    font-size: 1.5rem;
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.process-content p {
    color: var(--neutral-700);
    line-height: 1.7;
}

/* Case Studies Section */
.case-studies-section {
    padding: 6rem 0;
    position: relative;
}

.case-study {
    position: relative;
}

.case-study-image {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.case-study-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.case-study-content {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    margin-top: -2rem;
    position: relative;
}

.industry-tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.case-study-content h3 {
    font-size: 1.75rem;
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
}

.case-study-content p {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.slider-controls {
    margin-top: 3rem;
    text-align: center;
}

.prev-btn, .next-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.slider-dots {
    display: inline-flex;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--neutral-400);
    margin: 0 5px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* External Resources Section */
.external-resources-section {
    padding: 6rem 0;
    background-color: var(--neutral-100);
    position: relative;
}

.resource-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    overflow: hidden;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.resource-title {
    font-size: 1.25rem;
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.resource-text {
    color: var(--neutral-700);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resource-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--primary-color);
    transition: all var(--transition-fast);
}

.resource-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    position: relative;
}

.blog-card {
    height: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    background-color: white;
}

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

.blog-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .card-img-top {
    transform: scale(1.05);
}

.blog-meta {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    color: var(--neutral-600);
    font-size: 0.875rem;
}

.blog-title {
    font-size: 1.5rem;
    color: var(--neutral-800);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--primary-color);
    transition: all var(--transition-fast);
}

.blog-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
    transform: translateX(5px);
}

/* Events Section */
.events-section {
    padding: 6rem 0;
    background-color: var(--neutral-100);
    position: relative;
}

.event-card {
    height: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    background-color: white;
}

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

.card-image {
    position: relative;
    overflow: hidden;
}

.event-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 0.875rem;
    text-transform: uppercase;
    display: block;
}

.event-title {
    font-size: 1.5rem;
    color: var(--neutral-800);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.event-details {
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.event-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.event-details i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.event-description {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    position: relative;
}

.contact-info {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    font-size: 1.25rem;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.info-item h3 i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

.info-item p {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-map {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius-md);
    height: 100%;
}

.form-title {
    font-size: 1.75rem;
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
}

.form-control {
    border: 1px solid var(--neutral-300);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem;
    font-size: 1rem;
    color: var(--neutral-800);
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(45, 93, 123, 0.25);
}

.form-select {
    border: 1px solid var(--neutral-300);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem;
    font-size: 1rem;
    color: var(--neutral-800);
    transition: all var(--transition-fast);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(45, 93, 123, 0.25);
}

.form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.125em;
    border: 1px solid var(--neutral-400);
    border-radius: 0.25em;
    transition: all var(--transition-fast);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(45, 93, 123, 0.25);
}

/* Footer */
.footer {
    background-color: var(--neutral-800);
    color: var(--neutral-300);
    padding: 5rem 0 2rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
    max-width: 180px;
}

.footer-about p {
    color: var(--neutral-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links a {
    color: var(--neutral-300);
    margin-right: 1.5rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-light);
}

.footer-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--neutral-400);
    transition: color var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-newsletter p {
    color: var(--neutral-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--neutral-500);
    font-size: 0.875rem;
}

.footer-legal a {
    color: var(--neutral-400);
    margin: 0 0.75rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-legal a:hover {
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 37, 41, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cookie-content p {
    margin: 0;
    padding-right: 2rem;
}

.cookie-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.cookie-button:hover {
    background-color: var(--primary-dark);
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background-color: var(--neutral-100);
}

.success-content {
    max-width: 600px;
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.success-title {
    font-size: 2rem;
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.success-message {
    color: var(--neutral-700);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* About, Privacy, Terms Pages */
.page-header {
    padding: 8rem 0 4rem;
    background-color: var(--primary-color);
    position: relative;
}

.page-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.page-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.content-section p {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-section ul {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .methodology-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-icon {
        width: 40px;
        height: 40px;
    }
    
    .process-item {
        padding-left: 50px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .mission-image-container {
        margin-bottom: 2rem;
    }
    
    .case-study-content {
        margin-top: 0;
    }
}

/* Animation utilities */
.fade-in {
    /*opacity: 0;*/
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    /*opacity: 0;*/
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    /*opacity: 0;*/
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* For pages with fixed header */
.terms-page, .privacy-page, .about-page, .contacts-page {
    padding-top: 100px;
}

/* Animation delay utilities */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}