:root {
    /* Основная цветовая палитра (монохромная) */
    --primary-color: #1a1a1a;
    --primary-light: #333333;
    --primary-dark: #000000;
    --secondary-color: #f2f2f2;
    --secondary-light: #ffffff;
    --secondary-dark: #e0e0e0;
    --accent-color: #666666;
    --accent-light: #999999;
    --accent-dark: #444444;
    
    /* Функциональные цвета */
    --success-color: #2e7d32;
    --info-color: #0288d1;
    --warning-color: #ff9800;
    --danger-color: #d32f2f;
    
    /* Дополнительные цвета */
    --text-color: #333333;
    --text-light: #666666;
    --text-dark: #1a1a1a;
    --text-white: #ffffff;
    
    /* Параметры теней */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    
    /* Параметры переходов */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Размеры шрифтов */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    
    /* Радиусы скругления */
    --border-radius-sm: 0.125rem;
    --border-radius-md: 0.25rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
    
    /* Отступы секций */
    --section-padding: 80px 0;
}

/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

a:hover {
    color: var(--accent-color);
}

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

.section-padding {
    padding: var(--section-padding);
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-top: 1rem;
}

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

/* Кнопки */
.btn {
    display: inline-block;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--text-white);
    cursor: pointer;
    transition: all var(--transition-normal);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transition: all var(--transition-normal);
    z-index: -1;
}

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

.btn:hover:before {
    left: 0;
}

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

.btn-outline:hover {
    color: var(--text-white);
}

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

.btn-sm {
    padding: 8px 18px;
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: 15px 35px;
    font-size: var(--font-size-lg);
}

/* Навигация */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--primary-color);
    padding: 10px 15px;
    position: relative;
}

.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-normal);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 70%;
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero секция */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-white);
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 0;
}

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

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: var(--font-size-2xl);
    margin-bottom: 2rem;
    color: var(--text-white);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-text {
    font-size: var(--font-size-lg);
    margin-bottom: 2.5rem;
    max-width: 700px;
    color: var(--text-white);
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Vision секция */
.vision-section {
    position: relative;
    overflow: hidden;
}

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

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

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

.vision-content {
    padding: 20px 0;
}

.vision-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    padding: 20px;
    background-color: var(--secondary-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-left: 3px solid var(--primary-color);
}

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

.feature h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Research секция */
.research-section {
    position: relative;
}

.research-content {
    margin-bottom: 40px;
}

.research-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

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

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

.research-timeline {
    margin-top: 40px;
}

.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline-number {
    position: absolute;
    left: -50px;
    background-color: var(--primary-color);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    z-index: 1;
}

.timeline-content h4 {
    margin-bottom: 10px;
}

.research-methods .accordion-item {
    border: none;
    margin-bottom: 15px;
    background-color: var(--secondary-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.research-methods .accordion-button {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    background-color: var(--secondary-light);
    color: var(--primary-color);
    padding: 15px 20px;
    border: none;
    box-shadow: none;
}

.research-methods .accordion-button:not(.collapsed) {
    color: var(--text-white);
    background-color: var(--primary-color);
}

.research-methods .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.research-methods .accordion-body {
    padding: 20px;
    background-color: var(--secondary-light);
}

/* Portfolio секция */
.portfolio-section {
    position: relative;
}

.portfolio-filters {
    margin-bottom: 40px;
}

.filter-button {
    background: none;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    padding: 8px 20px;
    margin: 0 5px;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-normal);
    color: var(--text-light);
}

.filter-button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.filter-button:hover,
.filter-button.active {
    color: var(--primary-color);
}

.filter-button:hover:after,
.filter-button.active:after {
    width: 70%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-item .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.portfolio-item .card-image {
    overflow: hidden;
    width: 100%;
    height: 250px;
}

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

.portfolio-item .card:hover .card-image img {
    transform: scale(1.1);
}

.portfolio-item .card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--secondary-light);
}

.portfolio-item .card-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 10px;
}

.portfolio-item .card-content p {
    flex-grow: 1;
    margin-bottom: 15px;
}

/* External Resources секция */
.external-resources-section {
    position: relative;
}

.resource-card {
    background-color: var(--secondary-light);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    height: 100%;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.resource-card:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 0;
    height: 0;
    background-color: var(--primary-color);
    transition: all var(--transition-slow);
    z-index: -1;
    opacity: 0.05;
}

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

.resource-card:hover:before {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}

.resource-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.resource-card h3 {
    margin-bottom: 15px;
}

.resource-card p {
    margin-bottom: 20px;
}

.resource-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.resource-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.resource-link:hover:after {
    width: 100%;
}

/* Process секция */
.process-section {
    position: relative;
}

.process-timeline {
    position: relative;
}

.timeline-container {
    position: relative;
    padding: 40px 0;
}

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

.process-timeline .timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.process-timeline .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-timeline .timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.process-timeline .timeline-marker {
    position: absolute;
    top: 10px;
    right: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--secondary-light);
    box-shadow: var(--shadow-sm);
}

.process-timeline .timeline-item:nth-child(even) .timeline-marker {
    left: -8px;
}

.process-timeline .timeline-content {
    background-color: var(--secondary-light);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.process-timeline .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-timeline .timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Team секция */
.team-section {
    position: relative;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    background-color: var(--secondary-light);
}

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

.team-card .card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

.team-card .card-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-position {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.team-social {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 3px;
}

.social-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.social-link:hover:after {
    width: 100%;
}

/* Awards секция */
.awards-section {
    position: relative;
}

.awards-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    height: 100%;
}

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

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

.award-item {
    display: flex;
    margin-bottom: 30px;
    background-color: var(--secondary-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.award-year {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-width: 100px;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: var(--font-size-xl);
}

.award-content {
    padding: 20px;
    flex-grow: 1;
}

.award-content h3 {
    margin-bottom: 10px;
}

/* Sustainability секция */
.sustainability-section {
    position: relative;
}

.sustainability-content {
    margin-bottom: 30px;
}

.sustainability-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

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

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

.sustainability-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight {
    padding: 20px;
    background-color: var(--secondary-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-left: 3px solid var(--primary-color);
}

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

.highlight h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.sustainability-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-item {
    background-color: var(--secondary-light);
    padding: 25px 20px;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

/* Press секция */
.press-section {
    position: relative;
}

.press-card {
    background-color: var(--secondary-light);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.press-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.press-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.press-content {
    flex-grow: 1;
}

.press-content h3 {
    margin-bottom: 15px;
}

.press-content p {
    font-style: italic;
    margin-bottom: 15px;
}

.press-date {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* History секция */
.history-section {
    position: relative;
}

.history-timeline {
    position: relative;
}

.history-timeline .timeline-container {
    position: relative;
    padding: 40px 0;
}

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

.history-timeline .timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.history-timeline .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.history-timeline .timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.history-timeline .timeline-year {
    position: absolute;
    top: 0;
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    z-index: 1;
    border-radius: var(--border-radius-sm);
}

.history-timeline .timeline-item:nth-child(odd) .timeline-year {
    right: -40px;
}

.history-timeline .timeline-item:nth-child(even) .timeline-year {
    left: -40px;
}

.history-timeline .timeline-content {
    background-color: var(--secondary-light);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.history-timeline .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.history-timeline .timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* News секция */
.news-section {
    position: relative;
}

.news-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    background-color: var(--secondary-light);
}

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

.news-card .card-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

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

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

.news-card .card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-bottom: 10px;
}

.news-card .card-content h3 {
    margin-bottom: 15px;
    font-size: var(--font-size-lg);
}

.news-card .card-content p {
    flex-grow: 1;
    margin-bottom: 15px;
}

.news-link {
    align-self: flex-start;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    margin-top: auto;
}

.news-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.news-link:hover:after {
    width: 100%;
}

/* Contact секция */
.contact-section {
    position: relative;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-text {
    flex-grow: 1;
}

.contact-text h3 {
    margin-bottom: 10px;
    font-size: var(--font-size-lg);
}

.contact-form {
    background-color: var(--secondary-light);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    height: auto;
    padding: 12px 15px;
    font-size: var(--font-size-md);
    border: 1px solid var(--secondary-dark);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-normal);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-section {
    height: 450px;
}

.map-container {
    height: 100%;
}

.map-container iframe {
    height: 100%;
    width: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 80px 0 30px;
    position: relative;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-about h3 {
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--secondary-color);
}

.footer h3 {
    color: var(--text-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links,
.footer-services,
.footer-social {
    margin-bottom: 30px;
}

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

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li {
    color: var(--secondary-color);
    transition: color var(--transition-normal);
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a:before,
.footer-services ul li:before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    transition: transform var(--transition-normal);
}

.footer-links ul li a:hover {
    color: var(--text-white);
}

.footer-links ul li a:hover:before {
    transform: translateX(3px);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links a {
    color: var(--secondary-color);
    transition: color var(--transition-normal);
}

.social-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.copyright p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-legal a {
    color: var(--secondary-color);
    transition: color var(--transition-normal);
}

.footer-legal a:hover {
    color: var(--text-white);
}

/* Cookie Consent */
.cookie-consent {
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.cookie-consent p {
    margin-bottom: 0;
    color: #fff;
}

/* Success Page */
.success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.success-title {
    font-size: var(--font-size-3xl);
    margin-bottom: 1.5rem;
}

.success-message {
    max-width: 600px;
    margin-bottom: 2rem;
}

/* About, Privacy, Terms pages */
.page-content {
    padding-top: 120px;
    padding-bottom: 80px;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    margin-bottom: 1rem;
}

/* Card component standardization */
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
}

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

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

.card-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 991px) {
    :root {
        --section-padding: 60px 0;
    }
    
    h1 {
        font-size: var(--font-size-3xl);
    }
    
    h2 {
        font-size: var(--font-size-2xl);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-xl);
    }
    
    .process-timeline .timeline-item,
    .history-timeline .timeline-item {
        width: 100%;
        padding: 0 0 0 60px;
        left: 0;
        text-align: left;
    }
    
    .process-timeline .timeline-container:before,
    .history-timeline .timeline-container:before {
        left: 30px;
    }
    
    .process-timeline .timeline-marker,
    .process-timeline .timeline-item:nth-child(even) .timeline-marker {
        left: 22px;
    }
    
    .history-timeline .timeline-year,
    .history-timeline .timeline-item:nth-child(odd) .timeline-year,
    .history-timeline .timeline-item:nth-child(even) .timeline-year {
        left: -10px;
    }
    
    .contact-form {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .award-item {
        flex-direction: column;
    }
    
    .award-year {
        width: 100%;
        padding: 10px;
    }
    
    .footer-legal {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 575px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: var(--font-size-xl);
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}