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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

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

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1001;
    transition: transform 0.3s ease-in-out;
}

/* Hamburger Menu */
.menu-toggle-checkbox {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #374151;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    transform-origin: center;
}

.menu-toggle-checkbox:checked + .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle-checkbox:checked + .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-checkbox:checked + .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Close Button */
.menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1002;
    display: none;
}

.menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #374151;
    border-radius: 10px;
    transform-origin: center;
}

.menu-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.header.hidden {
    transform: translateY(-100%);
}

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

.header-left,
.header-center,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-center {
    justify-content: center;
    position: static;
    transform: none;
}

.header-right {
    justify-content: flex-end;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    margin-top: 50px;
}

.logo-img {
    height: 100px;
    width: auto;
    border-radius: 50%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.mobile-nav {
    display: none;
}

/* Desktop layout for navigation */
@media (min-width: 769px) {
    .main-nav-left {
        display: flex;
        align-items: center;
        gap: 32px;
    }
    
    .main-nav-right {
        display: flex;
        align-items: center;
        gap: 32px;
    }
}



.nav-link {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #4A90A4;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 12px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 15px;
    min-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 14px;
    line-height: 1.4;
    margin-left: 10px;
}

.dropdown-item strong {
    font-weight: 700;
}

.dropdown-category {
    margin-bottom: 15px;
}

.dropdown-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-weight: 700;
    font-size: 16px;
    color: #111827;
    padding: 5px 10px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 10px;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn, .language-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.search-btn:hover, .language-btn:hover {
    background-color: #f3f4f6;
}

.language-btn {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #4A90A4;
    color: white;
    border: 1px solid #4A90A4;
}

.btn-primary:hover {
    background: #3A7A8A;
    border-color: #3A7A8A;
}

.btn-secondary {
    background: #F97316;
    color: white;
    border: 1px solid #F97316;
}

.btn-secondary:hover {
    background: #EA580C;
    border-color: #EA580C;
}

.btn-primary-large {
    background: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 0;
    padding: 14px 28px;
    font-size: 16px;
}

.btn-primary-large:hover {
    background: #3A7A8A;
    border-color: #3A7A8A;
}

.btn-secondary-large {
    background: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 0;
    padding: 14px 28px;
    font-size: 16px;
}

.btn-secondary-large:hover {
    background: #B91C1C;
    border-color: #B91C1C;
}

.btn-outline {
    background: transparent;
    color: #4A90A4;
    border: 1px solid #4A90A4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #4A90A4;
    color: white;
}

.btn-outline::after {
    content: "→";
    margin-left: 5px;
}



/* Hero Section */
.hero-section {
    color: white;
    padding: 80px 0 180px;
    position: relative;
    overflow: hidden;
    height: 900px;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero-section {
        height: 700px;
        min-height: 100vh;
        padding: 60px 0 120px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 600px;
        min-height: 100vh;
        padding: 40px 0 80px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
}

.hero-background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-background-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.2) 60%, rgba(255, 255, 255, 0.1) 80%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 500px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-container {
        min-height: 600px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        min-height: 500px;
    }
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-graphic {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.graphic-bars {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 200px;
}

.bar {
    width: 12px;
    border-radius: 6px;
    background: linear-gradient(180deg, #60A5FA 0%, #3B82F6 50%, #1D4ED8 100%);
    opacity: 0.8;
    animation: barFloat 3s ease-in-out infinite;
}

.bar:nth-child(odd) {
    background: linear-gradient(180deg, #34D399 0%, #10B981 50%, #059669 100%);
}

.bar-1 { height: 60px; animation-delay: 0s; }
.bar-2 { height: 120px; animation-delay: 0.2s; }
.bar-3 { height: 80px; animation-delay: 0.4s; }
.bar-4 { height: 140px; animation-delay: 0.6s; }
.bar-5 { height: 100px; animation-delay: 0.8s; }
.bar-6 { height: 160px; animation-delay: 1s; }
.bar-7 { height: 90px; animation-delay: 1.2s; }
.bar-8 { height: 180px; animation-delay: 1.4s; }
.bar-9 { height: 70px; animation-delay: 1.6s; }
.bar-10 { height: 130px; animation-delay: 1.8s; }
.bar-11 { height: 110px; animation-delay: 2s; }
.bar-12 { height: 150px; animation-delay: 2.2s; }
.bar-13 { height: 85px; animation-delay: 2.4s; }
.bar-14 { height: 170px; animation-delay: 2.6s; }
.bar-15 { height: 95px; animation-delay: 2.8s; }

.graphic-circle {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F472B6 0%, #EC4899 100%);
    opacity: 0.7;
    animation: circleFloat 4s ease-in-out infinite;
}

@keyframes barFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes circleFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Reports Section */
.reports-section {
    padding: 80px 0;
    background: #f9fafb;
    position: relative;
    margin-top: -150px;
    z-index: 20;
}

.reports-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 300px;
    margin-top: -150px;
}

.report-card {
    position: absolute;
    height: 300px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    z-index: 10;
}

.large-card {
    width: 70%;
    background: #ffffff;
    left: 0;
    top: 0;
    transform: translateY(-140px);
}

.small-card {
    width: 30%;
    background: #001D3D;
    color: #ffffff;
    right: 10px;
    top: 0;
    transform: translateY(-140px);
}

.large-card .report-image {
    flex-shrink: 0;
    padding: 0 30px;
}

.large-card .report-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.report-content {
    padding: 30px;
}

.large-card .report-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.large-card .report-content p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.small-card .report-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.small-card .report-content p {
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-outline-light::after {
    content: "→";
    margin-left: 5px;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #001D3D;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .reports-container {
        height: auto;
        padding: 20px 0;
    }
    
    .report-card {
        position: relative;
        width: 100% !important;
        margin-bottom: 20px;
        transform: none !important;
        top: 0;
    }
    
    .large-card, .small-card {
        width: 100%;
    }
    
    .reports-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Ensure consistent styling for all solution cards */
.solution-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.solution-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.solution-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.solution-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.solution-content p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
    min-height: 80px;
}

.solution-link {
    color: #4A90A4;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
    margin-top: auto;
}

.solution-link:hover {
    color: #3A7A8A;
    text-decoration: underline;
}

.solution-link::after {
    content: "→";
    font-size: 12px;
}

/* About Content Styles */
.about-content {
    margin-bottom: 50px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.value-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

.values-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #111827;
    text-align: center;
    margin-bottom: 30px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    list-style-type: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.values-list li {
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

.values-list li:before {
    content: "•";
    color: #4A90A4;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Companies Section */
.companies-section {
    padding: 100px 0;
    background: #f9fafb;
    text-align: center;
}

.companies-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #111827;
    margin-bottom: 16px;
}

.companies-section > p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.differentiator-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.differentiator-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
}

.differentiator-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.companies-logos {
    margin-bottom: 40px;
    overflow: hidden;
}

.logo-carousel {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    animation: logoScroll 30s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 40px;
    width: auto;
    max-width: 120px;
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Experts Section */
.experts-section {
    padding: 100px 0;
    background: #111827;
    color: white;
}

.experts-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.experts-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.experts-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.expert-card {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 32px;
    background: #1f2937;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.expert-card:hover {
    transform: translateX(8px);
}

.expert-logo {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #374151;
    border-radius: 8px;
}

.expert-logo img {
    max-width: 100px;
    height: auto;
}

.expert-content h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A0000, #001f4d);
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 1rem;
    color: #d1d5db;
    font-weight: 500;
    line-height: 1.5;
}

/* Spotlight Section */
.spotlight-section {
    padding: 100px 0;
}

.spotlight-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #111827;
    margin-bottom: 60px;
    text-align: center;
}

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

.spotlight-card {
    background: #111827;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.spotlight-card:hover {
    transform: translateY(-8px);
}

.spotlight-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f2937;
}

.placeholder-graphic {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

.circle-graphic {
    background: conic-gradient(from 0deg, #34D399, #3B82F6, #8B5CF6, #34D399);
    border-radius: 50%;
}

.diamond-graphic {
    background: linear-gradient(45deg, #10B981, #059669);
    transform: rotate(45deg);
}

.bars-graphic {
    background: linear-gradient(90deg, #10B981 0%, #10B981 30%, #3B82F6 30%, #3B82F6 60%, #8B5CF6 60%);
    border-radius: 4px;
}

.spotlight-content {
    padding: 24px;
    color: white;
}

.spotlight-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.spotlight-content p {
    color: #d1d5db;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4A0000, #001f4d);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: #f9fafb;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.newsletter-form h3,
.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.newsletter-form p,
.contact-info p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4A90A4;
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
}

.contact-details {
    margin-bottom: 24px;
}

.contact-details p {
    margin-bottom: 8px;
}

.contact-details a {
    color: #4A90A4;
    text-decoration: none;
}

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

.contact-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4A0000, #001f4d);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #4A0000, #001f4d);
    color: #FFFFFF; /* Pure white */
    padding: 8rem 0; /* Reduced padding for better height */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.mission-content {
    max-width: 1200px;
    padding: 30px;
    margin: 0 auto;
    border: 1px solid #FFFFFF; /* Thin white border */
    border-radius: 15px; /* Rounded corners */
    background: linear-gradient(135deg, #4A0000, #001f4d);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); /* Subtle glow effect */
    position: relative;
    overflow: hidden;
}

.mission-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.mission-content h2,
.mission-content p {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mission-content.visible h2,
.mission-content.visible p {
    opacity: 1;
    transform: translateY(0);
}

.mission-content.visible h2 {
    transition-delay: 0.2s;
}

.mission-content.visible p {
    transition-delay: 0.4s;
}

.mission-content h2 {
    font-family: 'Inter', sans-serif; /* Using Inter font like the rest of the site */
    font-size: 3rem; /* 48px */
    font-weight: 500; /* Medium */
    line-height: 1.3; /* Updated line height */
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Added text shadow */
    text-transform: none; /* Changed from capitalize to none */
}

.mission-content p {
    font-family: 'Inter', sans-serif; /* Using Inter font like the rest of the site */
    font-size: 1.2rem; /* ~19px */
    font-weight: 400; /* Regular */
    line-height: 1.6;
    max-width: 800px; /* Updated max-width */
    margin: 0 auto;
    color: #FFFFFF; /* Pure white */
    text-transform: none; /* Ensure no capitalization */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .mission-content p {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .mission {
        padding: 8rem 0; /* Reduced padding for mobile */
    }
    
    .mission-content {
        padding: 20px;
        margin: 0 15px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 20px;
    z-index: 1000;
    border-top: 1px solid #374151;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #d1d5db;
}

.cookie-notice-link {
    color: #60A5FA;
    text-decoration: none;
}

.cookie-notice-link:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    font-size: 0.875rem;
    padding: 8px 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        justify-content: center;
        text-align: center;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .experts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 12px 10px;
    }
    
    .menu-toggle {
        display: flex;
        order: 1;
        margin-right: auto;
        position: relative;
        z-index: 1002;
    }
    
    .header-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 2;
        margin: 0;
    }
    
    .header-left,
    .header-right {
        display: none;
    }
    
    .mobile-nav {
        order: 3;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        background: white;
        margin-left: 0;
        padding: 0;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 60px;
    }
    
    .menu-toggle-checkbox:checked ~ .mobile-nav {
        display: flex;
    }
    
    /* Esconde o conteúdo principal quando o menu está aberto */
    .menu-toggle-checkbox:checked ~ #main-content {
        display: none;
    }
    
    /* Esconde o menu-toggle quando o menu está aberto em mobile */
    .menu-toggle-checkbox:checked + .menu-toggle {
        display: none;
    }
    
    /* Mostra o botão de fechar quando o menu está aberto em mobile */
    .menu-toggle-checkbox:checked ~ .mobile-nav .menu-close {
        display: block;
    }
    
    /* Adiciona overlay escuro quando o menu está aberto */
    .menu-toggle-checkbox:checked::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 10px 20px;
        text-align: left;
        border-bottom: 2px solid;
        border-image: linear-gradient(to right, #4A0000, #001f4d) 1;
    }
    
    .dropdown-item {
        border-bottom: 2px solid;
        border-image: linear-gradient(to right, #4A0000, #001f4d) 1;
    }
    
    .category-title {
        border-bottom: 2px solid;
        border-image: linear-gradient(to right, #4A0000, #001f4d) 1;
    }
    
    .nav-dropdown {
        width: 100%;
        border-bottom: 2px solid;
        border-image: linear-gradient(to right, #4A0000, #001f4d) 1;
    }
    
    .dropdown-toggle {
        width: 100%;
        text-align: left;
        padding: 10px 20px;
    }
    
    .dropdown-toggle::after {
        float: right;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: 100%;
        max-height: none;
        overflow: visible;
    }
    
    .dropdown-category {
        margin-bottom: 0;
    }
    
    .category-title {
        padding: 8px 20px;
        border-bottom: 2px solid;
        border-image: linear-gradient(to right, #4A0000, #001f4d) 1;
        margin-bottom: 0;
    }
    
    .dropdown-item {
        padding: 8px 30px;
        margin-left: 0;
        border-bottom: 2px solid;
        border-image: linear-gradient(to right, #4A0000, #001f4d) 1;
    }
    
    .header-right {
        display: none;
    }
    
    .logo {
        width: 80px;
        height: 80px;
        margin: 0;
        padding: 3px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .main-nav-left, .main-nav-right {
        flex: none;
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-card {
        flex-direction: column;
        text-align: center;
    }
    
    .reports-container {
        height: auto;
        margin-top: 0;
    }
    
    .report-card {
        position: relative;
        width: 100% !important;
        margin-bottom: 20px;
        transform: none !important;
        top: 0;
        height: auto;
    }
    
    .large-card, .small-card {
        width: 100%;
    }
    
    .large-card .report-image {
        padding: 20px 0;
    }
    
    .large-card .report-image img {
        width: 150px;
        height: 150px;
    }
    
    .report-content {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .spotlight-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
    
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .mission-content p {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .mission {
        padding: 4rem 0;
    }
    
    .mission-content {
        padding: 20px;
        margin: 0 15px;
    }
    
    .dropdown-menu {
        min-width: 280px;
        left: 50%;
        transform: translateX(-50%);
        display: none;
        position: absolute;
        top: 100%;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Show dropdown items when menu is open */
    .menu-toggle-checkbox:checked ~ .main-nav .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header-container {
        padding: 8px 5px;
    }
    
    .logo {
        width: 80px;
        height: 80px;
        margin-top: 10px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 4px 6px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
        box-sizing: border-box;
    }
    
    .contact-links {
        flex-direction: column;
    }
    
    .contact-links .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .solution-content h3 {
        font-size: 1.1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .mission-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .dropdown-menu {
        min-width: 250px;
        padding: 10px;
        display: none;
        position: absolute;
        top: 100%;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown-item {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .category-title {
        font-size: 14px;
    }
}
