/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ocean-blue: #2A9DF4;
    --sand: #F3DFA2;
    --white: #FFFFFF;
    --gray: #737373;
    --night-blue: #1D3557;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 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);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--night-blue);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ocean-blue), #1e7cc7);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--sand);
    color: var(--night-blue);
    border: 2px solid var(--sand);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--night-blue);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--ocean-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accept {
    background: var(--ocean-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: 800px;
    background: var(--white);
    border: 2px solid var(--sand);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.cookie-content a {
    color: var(--ocean-blue);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.nav-logo a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--night-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: var(--ocean-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--ocean-blue);
}

.nav-link.active {
    color: var(--ocean-blue);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--night-blue);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
  
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/banner-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
    display: flex;
    align-items: center;
}
 .contact-hero{
    padding: 120px 0 80px;
  
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/banner-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
   
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}



.hero-title {
    color: var(--ocean-blue);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: var(--sand);
    border-radius: 50%;
    opacity: 0.3;
}

.hero-graphic::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 40%;
    width: 20%;
    height: 20%;
    background: var(--white);
    border-radius: 50%;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--night-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ocean-blue), #1e7cc7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    color: var(--night-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
   
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--night-blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--night-blue);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ocean-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--sand);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--night-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--sand);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--night-blue);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(42, 157, 244, 0.1);
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: #ef4444;
}

.form-input.error + .form-error,
.form-textarea.error + .form-error,
.form-select.error + .form-error {
    display: block;
}

/* Contact Form Section - Minimalist Style */
.contact-form-section {
    padding: 4rem 0;
    background: #fafafa;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-input,
.contact-form .form-textarea,
.contact-form .form-select {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 0.95rem;
    background: #fafafa;
    transition: all 0.2s ease;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus,
.contact-form .form-select:focus {
    background: white;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 2px rgba(42, 157, 244, 0.1);
}

.contact-form .form-label {
    font-weight: 400;
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.contact-form .form-textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--ocean-blue);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Benefits Section - Minimalist */
.benefits {
    background: white;
    padding: 3rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--ocean-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--night-blue);
    font-size: 1rem;
    font-weight: 500;
}

.benefit-content p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--night-blue), var(--ocean-blue));
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-text h2 {
    color: var(--night-blue);
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-values h3 {
    color: var(--night-blue);
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.values-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.values-list h4 {
    color: var(--night-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.values-list p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, var(--sand) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-member h3 {
    color: var(--night-blue);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--ocean-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

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

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ocean-blue);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--night-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.stat-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, var(--sand) 100%);
}

.approach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-text h2 {
    color: var(--night-blue);
    margin-bottom: 1.5rem;
}

.approach-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.approach-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-feature {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.approach-feature h4 {
    color: var(--night-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.approach-feature p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.approach-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.approach-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.approach-graphic::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: var(--sand);
    border-radius: 50%;
    opacity: 0.3;
}

.approach-graphic::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 20%;
    width: 30%;
    height: 30%;
    background: var(--white);
    border-radius: 8px;
    opacity: 0.2;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--night-blue);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Research Page Styles */
.research-categories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--night-blue);
}

.category-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-stats {
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-weight: 500;
    color: var(--ocean-blue);
}

.featured-research {
    padding: 80px 0;
}

.featured-research .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .featured-research .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-research .info-grid {
        grid-template-columns: 1fr;
    }
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.research-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.research-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.research-card.featured {
    border-left: 4px solid var(--ocean-blue);
    background: linear-gradient(135deg, #f8f9fa, white);
}

.research-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.research-category {
    background: var(--sand);
    color: var(--night-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.research-date {
    color: var(--gray);
    font-size: 0.875rem;
}

.research-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--night-blue);
    line-height: 1.4;
}

.research-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.research-authors {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.research-actions {
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.research-methods {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.methods-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.methods-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--night-blue);
}

.methods-text > p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.methods-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-item h4 {
    color: var(--night-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.method-item p {
    color: var(--gray);
    line-height: 1.5;
}

.methods-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.research-topics {
    padding: 80px 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.topic-item {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.topic-item:hover {
    border-color: var(--ocean-blue);
}

.topic-item h3 {
    color: var(--night-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.topic-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Services Section Styles */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: var(--ocean-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.service-icon:hover {
    background-color: var(--night-blue);
    transform: translateY(-2px);
}

.services .info-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.services .info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.services .info-box h3 {
    color: var(--night-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.services .info-box p {
    color: var(--gray);
    line-height: 1.6;
}

/* Routes Page Styles */
.planning-process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    color: var(--night-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content > p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-features li {
    background: var(--sand);
    color: var(--night-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.route-types {
    padding: 80px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.type-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.type-card h3 {
    color: var(--night-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.type-card > p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.type-features span {
    background: var(--sand);
    color: var(--night-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.planning-tools {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.tools-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.tools-text h2 {
    color: var(--night-blue);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.tools-text > p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tool-category h4 {
    color: var(--night-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tool-category ul {
    list-style: none;
    padding: 0;
}

.tool-category li {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.tool-category li::before {
    content: "•";
    color: var(--ocean-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tools-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

.showcase-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: scale(1.05);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.showcase-item h5 {
    color: var(--night-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.showcase-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.sample-routes {
    padding: 80px 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.route-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.route-header h3 {
    color: var(--night-blue);
    font-size: 1.5rem;
    margin: 0;
    flex: 1;
}

.route-duration {
    background: var(--ocean-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.route-description p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.route-highlights h4 {
    color: var(--night-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.route-highlights ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.route-highlights li {
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.route-highlights li::before {
    content: "→";
    color: var(--ocean-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.route-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    color: var(--sand);
    font-size: 0.875rem;
}

.stat-value {
    color: var(--night-blue);
    font-weight: 600;
    font-size: 1rem;
}

.planning-tips {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-3px);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.tip-item h3 {
    color: var(--night-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tip-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--ocean-blue);
}

.nav-link.active::after {
    width: 100%;
}

/* Form Validation Styles */
.field-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

input.error,
textarea.error,
select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

input.error:focus,
textarea.error:focus,
select.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        
        text-align: center;
        gap: 2rem;
    }

    .hero-graphic {
        width: 300px;
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .features,
    .about-preview {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-graphic {
        width: 250px;
        height: 250px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .values-list li {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .approach-features {
        gap: 1rem;
    }

    .approach-feature {
        padding: 1rem;
        text-align: center;
    }

    /* Research Page Mobile Styles */
    .methods-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .methods-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-item {
        flex: 1;
        margin: 0 0.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .research-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    /* Routes Page Mobile Styles */
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-item:hover {
        transform: translateY(-5px);
    }

    .step-features {
        justify-content: center;
    }

    .types-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .tools-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tool-showcase {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .route-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .route-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Contact page mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .benefit-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
        align-self: center;
    }
}

/* Thank You page styles */
.thank-you-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--night-blue) 100%);
    color: white;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--sand);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(243, 223, 162, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(243, 223, 162, 0);
    }
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.next-steps h2 {
    margin-bottom: 2rem;
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--sand);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--night-blue);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.9rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-reminder {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-reminder h3 {
    margin-bottom: 1rem;
    color: white;
}

.contact-reminder p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sand);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-option:hover {
    opacity: 0.8;
}

.contact-option a {
    color: var(--sand);
    text-decoration: none;
    font-weight: 500;
}

.contact-option a:hover {
    text-decoration: underline;
}

.related-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.content-card h3 {
    color: var(--night-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.content-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--night-blue);
}

/* Thank You page responsive styles */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 4rem 0;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .next-steps {
        padding: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .success-icon {
        width: 80px;
        height: 80px;
    }
    
    .thank-you-content h1 {
        font-size: 1.8rem;
    }
    
    .next-steps {
        padding: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .contact-reminder {
        padding: 1.5rem;
    }
}

/* Cookie Policy Page Styles */
/* Policy Pages Header */
.policy-header {
    background: var(--night-blue);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.policy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.policy-header .container {
    position: relative;
    z-index: 2;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.policy-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.policy-meta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 12px 25px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.policy-meta span {
    font-size: 0.95rem;
    font-weight: 500;
}

.policy-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.policy-content .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.policy-navigation {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 120px;
    z-index: 10;
    height: fit-content;
    border: 1px solid rgba(42, 157, 244, 0.1);
    backdrop-filter: blur(10px);
}

.navigation-content {
    /* display: grid;
    grid-template-columns: 2fr 1fr; */
    gap: 30px;
    align-items: start;
}

.navigation-left {
    min-width: 0;
}

.navigation-right {
    min-width: 0;
}

.service-highlight {
    background: linear-gradient(135deg, #2A9DF4 0%, #1D3557 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(42, 157, 244, 0.3);
    position: relative;
    overflow: hidden;
}

.service-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.service-highlight h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F3DFA2;
}

.service-highlight p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.policy-navigation h3 {
    color: #1D3557;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #F3DFA2;
    position: relative;
}

.policy-navigation h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2A9DF4, #1D3557);
    border-radius: 2px;
}

.policy-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-navigation li {
    margin-bottom: 8px;
}

.policy-navigation a {
    color: #2A9DF4;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.policy-navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 157, 244, 0.1), rgba(29, 53, 87, 0.1));
    transition: width 0.3s ease;
    z-index: -1;
}

.policy-navigation a:hover {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    border-left-color: #2A9DF4;
    color: #1D3557;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(42, 157, 244, 0.2);
}

.policy-navigation a:hover::before {
    width: 100%;
}

.policy-navigation a.active {
    background: linear-gradient(135deg, #2A9DF4, #1D3557);
    color: white;
    border-left-color: #F3DFA2;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(42, 157, 244, 0.4);
    font-weight: 600;
}

.policy-navigation a.active::before {
    width: 100%;
    background: linear-gradient(135deg, rgba(243, 223, 162, 0.2), rgba(255, 255, 255, 0.1));
}

.policy-sections {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-section {
    padding: 40px 50px;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: #1D3557;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F3DFA2;
    font-weight: 600;
}

.policy-section h3 {
    color: #1D3557;
    font-size: 1.4rem;
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.policy-section h4 {
    color: #1D3557;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.policy-section ul,
.policy-section ol {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 25px;
}

.policy-section li {
    margin-bottom: 8px;
}

.last-updated {
    background: rgba(42, 157, 244, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #2A9DF4;
}

.last-updated span {
    color: #1D3557;
    font-weight: 500;
}

/* Cookie Explanation Styles */
.cookie-explanation {
    margin: 30px 0;
}

.explanation-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2A9DF4;
}

.explanation-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2A9DF4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.explanation-content h4 {
    color: #1D3557;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.explanation-content p {
    margin: 0;
    color: #737373;
}

/* Usage Purposes Styles */
.usage-purposes {
    margin: 30px 0;
}

.purpose-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    border: 1px solid rgba(42, 157, 244, 0.1);
    border-left: 4px solid #2A9DF4;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.purpose-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(42, 157, 244, 0.08), rgba(243, 223, 162, 0.08));
    border-radius: 0 15px 0 40px;
}

.purpose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #1D3557;
}

.purpose-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2A9DF4, #1D3557);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.purpose-content h4 {
    color: #1D3557;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.purpose-content p {
    margin: 0;
    color: #737373;
    font-size: 0.95rem;
}

/* Cookie Types Styles */
.cookie-types {
    margin: 30px 0;
}

.type-category {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.type-category h3 {
    color: #1D3557;
    margin-bottom: 25px;
    font-size: 1.4rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #F3DFA2;
}

.type-items {
    display: grid;
    gap: 20px;
}

.type-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2A9DF4;
}

.type-item h4 {
    color: #1D3557;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.type-item p {
    margin-bottom: 15px;
    color: #737373;
    font-size: 0.95rem;
}

/* User Rights Styles */
.user-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(42, 157, 244, 0.2);
    box-shadow: 0 4px 15px rgba(42, 157, 244, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.right-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    transition: width 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(42, 157, 244, 0.2);
}

.right-item:hover::before {
    width: 8px;
}

.right-item h4 {
    color: var(--night-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.right-item h4::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--ocean-blue);
    opacity: 0;
    transition: all 0.3s ease;
}

.right-item:hover h4::after {
    opacity: 1;
    transform: translateX(5px);
}

.right-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.rights-contact {
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.rights-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.rights-contact a:hover {
    text-decoration: underline;
}

/* Data Sharing Styles */
.sharing-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.case-item {
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(220, 38, 127, 0.2);
    box-shadow: 0 4px 15px rgba(220, 38, 127, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #dc267f, #ff6b9d);
    transition: width 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 127, 0.2);
}

.case-item:hover::before {
    width: 8px;
}

.case-item h4 {
    color: #dc267f;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.case-item h4::after {
    content: '⚠';
    position: absolute;
    right: 0;
    top: 0;
    color: #ff6b9d;
    opacity: 0;
    transition: all 0.3s ease;
}

.case-item:hover h4::after {
    opacity: 1;
    transform: translateX(5px);
}

.case-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Contact Details */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method,
.contact-info {
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(42, 157, 244, 0.2);
    box-shadow: 0 4px 15px rgba(42, 157, 244, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-method::before,
.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    border-radius: 0 0 10px 10px;
    transition: width 0.3s ease;
}

.contact-method:hover,
.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(42, 157, 244, 0.2);
}

.contact-method:hover::before,
.contact-info:hover::before {
    width: 80px;
}

.contact-method h4,
.contact-info h4 {
    color: var(--night-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.contact-method p,
.contact-info p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-method a,
.contact-info a {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method a:hover,
.contact-info a:hover {
    color: var(--night-blue);
    text-decoration: underline;
}

.type-details {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 0.9rem;
}

.detail-label {
    color: #1D3557;
    font-weight: 600;
}

.detail-label + span {
    color: #737373;
}

/* Cookie Types Styles */
.cookie-types {
    margin: 30px 0;
    display: grid;
    gap: 20px;
}

.cookie-type {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(42, 157, 244, 0.15);
    border-left: 4px solid #2A9DF4;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cookie-type::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(42, 157, 244, 0.1), rgba(243, 223, 162, 0.1));
    border-radius: 0 15px 0 50px;
}

.cookie-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #1D3557;
}

.cookie-type h6 {
    color: #1D3557;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}

.cookie-type p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cookie-detail {
    background: rgba(42, 157, 244, 0.08);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1D3557;
    border-left: 3px solid #2A9DF4;
}

/* Cookie Categories Styles */
.cookie-categories {
    margin: 30px 0;
    display: grid;
    gap: 25px;
}

.cookie-category {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    border: 1px solid rgba(42, 157, 244, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.cookie-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2A9DF4, #1D3557);
    transition: width 0.3s ease;
}

.cookie-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cookie-category:hover::before {
    width: 8px;
}

.cookie-category h6 {
    color: #1D3557;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 25px 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-category p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 25px;
}

.category-examples {
    padding: 0 25px 25px;
}

.category-examples strong {
    color: #1D3557;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}

.category-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-examples li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.category-examples li::before {
    content: '•';
    color: #2A9DF4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.category-note {
    background: rgba(243, 223, 162, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 3px solid #F3DFA2;
    font-size: 0.9rem;
    color: #1D3557;
}

.category-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    border: 1px solid rgba(42, 157, 244, 0.15);
    border-left: 4px solid #2A9DF4;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(42, 157, 244, 0.1), rgba(243, 223, 162, 0.1));
    border-radius: 0 15px 0 50px;
    z-index: 1;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #1D3557;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.category-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.category-icon.essential {
    background: #28a745;
}

.category-icon.functional {
    background: #ffc107;
}

.category-icon.analytics {
    background: #17a2b8;
}

.category-icon.marketing {
    background: #dc3545;
}

.category-header h3 {
    color: #1D3557;
    margin: 0;
    flex-grow: 1;
    font-size: 1.3rem;
}

.category-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-status.required {
    background: #d4edda;
    color: #155724;
}

.category-status.optional {
    background: #fff3cd;
    color: #856404;
}

.category-item p {
    padding: 0 30px;
    margin: 20px 0;
}

.category-examples {
    padding: 0 30px 25px;
}

.category-examples h4 {
    color: #1D3557;
    margin-bottom: 15px;
    font-size: 1rem;
}

.category-examples ul {
    list-style: none;
    padding: 0;
}

.category-examples li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #737373;
}

.category-examples li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2A9DF4;
    font-weight: bold;
}

.category-note {
    padding: 15px 30px 25px;
    background: #fff3cd;
    margin: 0;
    border-top: 1px solid #ffeaa7;
}

.category-note p {
    margin: 0;
    padding: 0;
    color: #856404;
    font-size: 0.9rem;
}

/* Third Party Services Styles */
.third-party-services {
    margin: 30px 0;
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(42, 157, 244, 0.15);
    border-left: 4px solid #2A9DF4;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(42, 157, 244, 0.1), rgba(243, 223, 162, 0.1));
    border-radius: 0 15px 0 50px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #1D3557;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-header h4 {
    color: #1D3557;
    margin: 0;
    font-size: 1.2rem;
}

.service-type {
    background: #2A9DF4;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-details {
    margin-top: 20px;
}

.detail-item {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.detail-item .detail-label {
    min-width: 80px;
    color: #1D3557;
    font-weight: 600;
}

.detail-item span:last-child {
    color: #737373;
}

.detail-item a {
    color: #2A9DF4;
    text-decoration: none;
}

.detail-item a:hover {
    text-decoration: underline;
}

.third-party-note {
    background: #e7f3ff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #2A9DF4;
    margin-top: 30px;
}

.third-party-note h4 {
    color: #1D3557;
    margin-bottom: 15px;
}

.third-party-note p {
    margin: 0;
    color: #737373;
}

/* Management Options Styles */
.management-options {
    margin: 30px 0;
}

.option-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    border: 1px solid rgba(42, 157, 244, 0.15);
    border-left: 4px solid #2A9DF4;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(42, 157, 244, 0.1), rgba(243, 223, 162, 0.1));
    border-radius: 0 15px 0 50px;
}

.option-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #1D3557;
}

.option-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2A9DF4, #1D3557);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.option-content h4 {
    color: #1D3557;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.option-content p {
    margin-bottom: 15px;
    color: #737373;
}

.option-content ul {
    list-style: none;
    padding: 0;
}

.option-content li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #737373;
}

.option-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2A9DF4;
    font-weight: bold;
}

.browser-instructions {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.browser-instructions h4 {
    color: #1D3557;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.browser-list {
    display: grid;
    gap: 15px;
}

.browser-item {
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #2A9DF4;
}

.browser-item h5 {
    color: #1D3557;
    margin-bottom: 8px;
    font-size: 1rem;
}

.browser-item p {
    margin: 0;
    color: #737373;
    font-size: 0.9rem;
}

.management-warning {
    background: #fff3cd;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
    margin-top: 30px;
}

.management-warning h4 {
    color: #856404;
    margin-bottom: 15px;
}

.management-warning p {
    margin: 0;
    color: #856404;
}

/* Consent Process Styles */
.consent-process {
    margin: 30px 0;
}

.consent-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    position: relative;
}

.consent-step:not(:last-child):after {
    content: "";
    position: absolute;
    left: 35px;
    bottom: -25px;
    width: 2px;
    height: 25px;
    background: #F3DFA2;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2A9DF4, #1D3557);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-content h4 {
    color: #1D3557;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #737373;
}

.consent-types {
    margin-top: 30px;
}

.consent-types h4 {
    color: #1D3557;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.consent-type {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2A9DF4;
    margin-bottom: 15px;
}

.consent-type h5 {
    color: #1D3557;
    margin-bottom: 10px;
    font-size: 1rem;
}

.consent-type p {
    margin: 0;
    color: #737373;
    font-size: 0.95rem;
}

/* Contact Details Styles */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-method {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-method h4 {
    color: #1D3557;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 0;
    color: #737373;
}

.contact-method a {
    color: #2A9DF4;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.policy-updates,
.effective-date {
    background: #e7f3ff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #2A9DF4;
    margin-top: 30px;
}

.policy-updates h4,
.effective-date h4 {
    color: #1D3557;
    margin-bottom: 15px;
}

.policy-updates p,
.effective-date p {
    margin: 0;
    color: #737373;
}

/* Policy Pages Special Elements */
.info-box,
.warning-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(42, 157, 244, 0.15);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid #2A9DF4;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(42, 157, 244, 0.1), rgba(243, 223, 162, 0.1));
    border-radius: 0 15px 0 50px;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: #1D3557;
}

.warning-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-color: rgba(243, 156, 18, 0.3);
    border-left-color: #f39c12;
}

.warning-box::before {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(255, 193, 7, 0.1));
}

.warning-box:hover {
    border-left-color: #e67e22;
}

.info-box h4,
.warning-box h4 {
    color: #1D3557;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.info-box p,
.warning-box p {
    color: #737373;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    border: 1px solid rgba(42, 157, 244, 0.1);
    border-left: 4px solid #2A9DF4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #1D3557;
}

.service-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #2A9DF4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-content h4 {
    color: #1D3557;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Policy Pages Responsive */
@media (max-width: 768px) {
    .policy-header {
     
    }
    
    .policy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .policy-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy-navigation {
        position: static;
        padding: 1.5rem;
        order: 2;
        margin-bottom: 1rem;
    }
    
    .navigation-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-highlight {
        padding: 15px;
    }
    
    .service-highlight h4 {
        font-size: 1rem;
    }
    
    .service-highlight p {
        font-size: 0.85rem;
    }
    
    .policy-navigation h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .policy-sections {
        order: 1;
    }
    
    .policy-section {
        padding: 2rem 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .info-box,
    .warning-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .service-icon {
        align-self: center;
    }
    
    .explanation-item,
    .purpose-item,
    .option-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .explanation-icon,
    .purpose-icon,
    .option-icon {
        align-self: center;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .consent-step {
        flex-direction: column;
        text-align: center;
    }
    
    .consent-step:not(:last-child):after {
        display: none;
    }
    
    .step-number {
        align-self: center;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    /* Research CTA Responsive */
    .research-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .research-cta h3 {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 0.8rem 1rem;
    }
    
    .cta-requirements {
        padding: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline {
         width: 100%;
         max-width: 300px;
     }
     
     /* New Elements Responsive */
     .user-rights,
     .sharing-cases {
         grid-template-columns: 1fr;
         gap: 1rem;
     }
     
     .right-item,
     .case-item {
         padding: 1.5rem;
     }
     
     .contact-details {
         grid-template-columns: 1fr;
         gap: 1rem;
     }
     
     .contact-method,
     .contact-info {
         padding: 1.5rem;
     }
 }

@media (max-width: 480px) {
    .policy-header {
       
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-subtitle {
        font-size: 1rem;
    }
    
    .policy-navigation {
        padding: 15px;
    }
    
    .navigation-content {
        gap: 15px;
    }
    
    .service-highlight {
        padding: 12px;
    }
    
    .service-highlight h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .service-highlight p {
        font-size: 0.8rem;
    }
    
    .policy-section {
        padding: 20px 15px;
    }
    
    .policy-section h2 {
        font-size: 1.4rem;
    }
    
    .info-box,
    .warning-box {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .type-category,
    .option-item {
        padding: 20px 15px;
    }
    
    /* Research CTA Mobile */
    .research-cta {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
    
    .research-cta h3 {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .benefit-icon {
        font-size: 1.2rem;
    }
    
    .cta-requirements {
        padding: 1rem;
    }
    
    .cta-requirements h4 {
         font-size: 1.1rem;
     }
     
     /* New Elements Mobile */
     .user-rights,
     .sharing-cases,
     .contact-details {
         grid-template-columns: 1fr;
         gap: 0.8rem;
     }
     
     .right-item,
     .case-item,
     .contact-method,
     .contact-info {
         padding: 1rem;
     }
     
     .right-item h4,
     .case-item h4,
     .contact-method h4,
     .contact-info h4 {
         font-size: 1.1rem;
     }
     
     .category-header {
        padding: 20px 15px;
    }
    
    .category-item p,
    .category-examples {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .browser-instructions,
    .third-party-note,
    .management-warning,
    .policy-updates,
    .effective-date {
        padding: 20px 15px;
    }
}

/* Policy Pages Styles */
.page-header {
    background: linear-gradient(135deg, var(--sage-green), var(--ocean-blue));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.last-updated {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.9rem;
}

.policy-content {
    padding: 80px 0;
}

.policy-navigation {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--sage-green);
}

.policy-navigation h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-navigation ul {
    list-style: none;
    padding: 0;
}

.policy-navigation li {
    margin-bottom: 0.5rem;
}

.policy-navigation a {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.policy-navigation a:hover {
    color: var(--sage-green);
    text-decoration: underline;
}

.policy-sections {
    max-width: 800px;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: var(--dark-gray);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sage-green);
}

.policy-section h3 {
    color: var(--dark-gray);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.policy-section h4 {
    color: var(--ocean-blue);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--gray);
}

.policy-section ul, .policy-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--gray);
}

.info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--ocean-blue);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.info-box h4 {
    color: var(--ocean-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.warning-box {
    background: #fef3cd;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.warning-box h4 {
    color: #f59e0b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.contact-section h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-section p {
    margin-bottom: 0.5rem;
}

.contact-section strong {
    color: var(--ocean-blue);
}

/* Thank You Page Styles */
.thank-you-content {
    padding: 120px 0;
    text-align: center;
}

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

.thank-you-content h1 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thank-you-actions .btn {
    min-width: 150px;
}

/* Carousel Styles */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(29, 53, 87, 0.8));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.slide-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--night-blue);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background: var(--white);
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Tourism Services Section */
.tourism-services {
    padding: 80px 0;
    background: var(--white);
}

.tourism-services .section-title {
    font-size: 2.5rem;
    color: var(--night-blue);
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon img {
   
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--night-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .tourism-services .section-title {
        font-size: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tourism Gallery Section */
.tourism-gallery {
    padding: 80px 0;
  
}

.tourism-gallery .section-title {
    font-size: 2.5rem;
    color: var(--night-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.tourism-gallery .section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

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

.gallery-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.gallery-content {
    padding: 2rem;
}

.gallery-content h3 {
    color: var(--night-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.gallery-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .tourism-gallery {
        padding: 60px 0;
    }
    
    .tourism-gallery .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-content {
        padding: 1.5rem;
    }
}

/* Adventure Types Section */
.adventure-types {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
}

.adventure-types .section-title {
    font-size: 2.5rem;
    color: var(--night-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.adventure-types .section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.adventure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.adventure-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.adventure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-blue), var(--sage-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.adventure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.adventure-card:hover::before {
    transform: scaleX(1);
}

.adventure-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.adventure-card:hover .adventure-icon {
    transform: scale(1.1) rotate(5deg);
}

.adventure-icon img {
   
    transition: all 0.3s ease;
}

.adventure-card h3 {
    font-size: 1.6rem;
    color: var(--night-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.adventure-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.adventure-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, var(--sand), #f1f5f9);
    color: var(--night-blue);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* .feature-tag:hover {
    background: linear-gradient(135deg, var(--ocean-blue), var(--sage-green));
    color: var(--white);
    transform: translateY(-2px);
} */

/* Seasonal Tourism Section */
.seasonal-tourism {
    padding: 80px 0;
 
}

.seasonal-tourism .section-title {
    font-size: 2.5rem;
    color: var(--night-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.seasonal-tourism .section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.season-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.season-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: transform 0.3s ease;
    transform: scaleX(0);
}

.season-card.spring::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.season-card.summer::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.season-card.winter::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.season-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.season-card:hover::before {
    transform: scaleX(1);
}

.season-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.season-card.spring .season-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.season-card.summer .season-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.season-card.winter .season-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.season-card:hover .season-icon {
    transform: scale(1.1) rotate(-5deg);
}

.season-icon img {
   
    transition: all 0.3s ease;
}

.season-card h3 {
    font-size: 1.6rem;
    color: var(--night-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.season-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.season-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.highlight-item {
    background: var(--sand);
    color: var(--night-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    width: fit-content;
}

.season-card.spring .highlight-item:hover {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: var(--white);
    transform: translateY(-2px);
}

.season-card.summer .highlight-item:hover {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: var(--white);
    transform: translateY(-2px);
}

.season-card.winter .highlight-item:hover {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design for Adventure and Seasonal Sections */
@media (max-width: 768px) {
    .adventure-types,
    .seasonal-tourism {
        padding: 60px 0;
    }
    
    .adventure-types .section-title,
    .seasonal-tourism .section-title {
        font-size: 2rem;
    }
    
    .adventure-grid,
    .seasons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .adventure-card,
    .season-card {
        padding: 2rem;
    }
    
    .adventure-features {
        justify-content: center;
    }
    
    .season-highlights {
        align-items: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .adventure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .adventure-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .seasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
    min-height: 70vh;
    background:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),  url(../images/hero-banner-2.jpg) no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 300;
}

.about-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ocean-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 0.05;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-card .value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card .value-icon svg {
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.value-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.feature-tag {
    background: var(--ocean-blue);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.value-card:hover .feature-tag {
    transform: scale(1.05);
}

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ocean-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover::before {
    opacity: 0.05;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-card .member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.team-card:hover .member-avatar {
    transform: scale(1.1);
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.team-card .member-role {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.team-card .member-bio {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.member-expertise .feature-tag {
    font-size: 0.75rem;
    padding: 4px 8px;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: var(--night-blue);;
    color: white;
}

.statistics .section-title {
    color: white;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-card .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.stat-card .stat-icon svg {
    color: white;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.stat-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover .detail-item {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background: #f8f9fa;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ocean-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.approach-card:hover::before {
    opacity: 0.05;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.approach-card .approach-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1);
}

.approach-card .approach-icon svg {
    color: white;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.approach-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.approach-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ocean-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card .service-icon svg {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Responsive Design for About Page */
/* Research Page Specific Styles */
.research-hero {
 
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/hero-banner-2.jpg);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.research-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.research-hero .container {
    position: relative;
    z-index: 2;
}

.research-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.research-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
}

.research-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 900px;
}

.research-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.research-hero .hero-graphics {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

/* Research Card Styles */
.feature-card.research-card {
    border-left: 4px solid var(--ocean-blue);
    position: relative;
    overflow: hidden;
}

.feature-card.research-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sage-green));
    opacity: 0.1;
    border-radius: 0 0 0 60px;
}

.research-card .card-subtitle {
    color: var(--ocean-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.research-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.research-features .feature-tag {
    background: linear-gradient(135deg, var(--sand), #f1f5f9);
    color: var(--night-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.category-stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: var(--ocean-blue);
    font-weight: 600;
}

/* Research Publication Styles */
.feature-card.research-publication {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-card.research-publication:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-5px);
}

.publication-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.publication-status {
    background: var(--sage-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.publication-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--ocean-blue);
    font-weight: 600;
}

.publication-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1rem 0;
}

.publication-highlights .highlight-tag {
    background: linear-gradient(135deg, var(--ocean-blue), var(--sage-green));
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.publication-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ocean-blue);
    display: block;
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--sand);
    margin-top: 0.2rem;
}

.publication-authors {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ocean-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.author-names {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

/* Method Card Styles */
.feature-card.method-card {
    border-left: 4px solid var(--sage-green);
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
}

.method-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1rem 0;
}

.method-tools .tool-tag {
    background: var(--sage-green);
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.method-applications {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.method-applications li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.method-applications li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
}

.method-applications li:last-child {
    border-bottom: none;
}

/* Topic Card Styles */
.feature-card.topic-card {
    border-left: 4px solid var(--night-blue);
    position: relative;
}



.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.topic-tags .topic-tag,
.research-tag {
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(42, 157, 244, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.topic-tags .topic-tag::before,
.research-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.topic-tags .topic-tag:hover,
.research-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 157, 244, 0.4);
    background: linear-gradient(135deg, var(--night-blue), var(--ocean-blue));
}

.topic-tags .topic-tag:hover::before,
.research-tag:hover::before {
    left: 100%;
}

/* Research CTA Section */
.research-cta {
    background: linear-gradient(135deg, var(--ocean-blue), var(--night-blue));
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(42, 157, 244, 0.3);
}

.research-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.research-cta h3 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.benefit-item span:last-child {
    color: var(--white);
    font-weight: 500;
}

.cta-requirements {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-requirements h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-requirements ul {
    list-style: none;
    padding: 0;
}

.cta-requirements li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.cta-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: var(--ocean-blue);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--sand);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.topic-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.85rem;
}

.topic-stats .stat-item {
    text-align: center;
    flex: 1;
}

.topic-stats .stat-number {
    font-weight: 700;
    color: var(--night-blue);
    font-size: 1rem;
}

.topic-stats .stat-label {
    color: var(--sand);
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

/* Research Grid Layouts */
.research-directions .features-grid,
.featured-research .features-grid,
.research-methodology .features-grid,
.research-topics .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .research-directions .features-grid,
    .featured-research .features-grid,
    .research-methodology .features-grid,
    .research-topics .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .research-hero h1 {
        font-size: 2.5rem;
    }
    
    .research-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .research-directions .features-grid,
    .featured-research .features-grid,
    .research-methodology .features-grid,
    .research-topics .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .publication-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .topic-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat .stat-number {
        font-size: 2rem;
    }
    
    .values-grid,
    .team-grid,
    .stats-grid,
    .approach-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card,
    .team-card,
    .stat-card,
    .approach-card,
    .service-card {
        padding: 30px 20px;
    }
    
    .value-card h3,
    .approach-card h3,
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .team-card h3 {
        font-size: 1.2rem;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
}

/* Routes Page Styles */
.routes-hero {
    /* background: var(--ocean-blue); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/banner-hero-3.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.routes-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.routes-hero .container {
    position: relative;
    z-index: 2;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
     max-width: 800px;
    margin: 0 auto;
}

.routes-hero  {

    margin: 0 auto;
    gap: 60px;
    text-align: center;
}

.routes-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.routes-hero .hero-text .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.routes-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.8;
   
}

.routes-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.routes-hero .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.routes-hero .btn-primary {
    background: white;
    color: #667eea;
}

.routes-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.routes-hero .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.routes-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.routes-hero .hero-visual {
    position: relative;
}

.routes-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.routes-hero .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.routes-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.routes-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Planning Cards */
.planning-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.planning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.planning-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.planning-card .card-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.planning-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.planning-stats {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

/* Route Type Cards */
.route-type-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.route-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.route-type-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.route-type-card .card-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.route-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.route-stats {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

/* Tool Cards */
.tool-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tool-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tool-card .card-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tool-stats {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

/* Route Example Cards */
.route-example-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.route-example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.route-example-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fa709a, #fee140);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.route-example-card .card-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

/* Tip Cards */
.tip-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tip-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tip-card .card-icon svg {
    width: 28px;
    height: 28px;
    stroke: #333;
    stroke-width: 2;
}

.tip-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tip-stats {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

/* Responsive Design for Routes Page */
@media (max-width: 768px) {
    .routes-hero {
        padding: 80px 0;
    }
    
    .routes-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .routes-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .routes-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .planning-card,
    .route-type-card,
    .tool-card,
    .route-example-card,
    .tip-card {
        padding: 1.5rem;
    }
}