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

body {
    font-family: 'MuseoModerno', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'MuseoModerno', sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    width: max-content;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: rgba(0, 79, 153, 1);
    color: white;
}

.btn-primary:hover {
    background-color: rgba(0, 60, 120, 1);
}

.btn-secondary {
    background-color: transparent;
    color: rgba(0, 79, 153, 1);
    border: 1px solid rgba(0, 79, 153, 1);
}

.btn-secondary:hover {
    background-color: rgba(0, 79, 153, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: rgba(0, 79, 153, 1);
    border: 1px solid rgba(0, 79, 153, 1);
}

.btn-outline:hover {
    background-color: rgba(0, 79, 153, 1);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content h3 {
    color: rgba(0, 79, 153, 1);
    font-size: 24px;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-policy-link {
    color: rgba(0, 79, 153, 1);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-notice.hidden {
    display: none;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: top 0.3s ease;
}

.header.with-cookie {
    top: 120px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo img {
    height: 40px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: rgba(0, 79, 153, 1);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
}

.hero .container {
    display: grid;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    line-height: 1.6;
}

.hero-content .btn {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: max-content;
  max-width: 100%;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.stat-item {
    background-color: rgba(0, 79, 153, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 79, 153, 1);
    margin-bottom: 15px;
}

.stat-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: rgba(0, 79, 153, 1);
}

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

.service-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h3 {
    padding: 25px 25px 15px;
    color: rgba(0, 79, 153, 1);
    font-size: 20px;
    font-weight: 600;
}

.service-item p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.6;
}

/* Support Section */
.support {
    padding: 100px 0;
    background-color: rgba(0, 79, 153, 1);
    color: white;
}

.support .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.support-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.support .btn-primary {
    background-color: white;
    color: rgba(0, 79, 153, 1);
}

.support .btn-primary:hover {
    background-color: #f8f9fa;
}

.support-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Global Vision Section */
.global-vision {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.global-vision h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: rgba(0, 79, 153, 1);
}

.global-vision > .container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.vision-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vision-item h3 {
    padding: 25px 25px 15px;
    color: rgba(0, 79, 153, 1);
    font-size: 18px;
    font-weight: 600;
}

.vision-item p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: rgba(0, 79, 153, 1);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 79, 153, 1);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: rgba(0, 79, 153, 1);
    transition: transform 0.3s ease;
    padding-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    width: 100%;
    gap: 30px;
    align-items: center;
}

.contact-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: rgba(0, 79, 153, 1);
}

.contact-content p {
    font-size: 18px;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-family: 'MuseoModerno', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 79, 153, 1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: rgba(0, 79, 153, 1);
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: rgba(0, 79, 153, 1);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content h3 {
        font-size: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .header .container {
        padding: 10px 20px;
    }
    
    .nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .support .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .contact .container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .services h2,
    .global-vision h2,
    .faq h2,
    .contact-content h2 {
        font-size: 28px;
    }
    
    .support-content h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.logo {
  font-weight: 900;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: rgba(0, 79, 153, 1);
  text-decoration: unset;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 1 auto;
}

.privacy h4 {
  margin-top: 16px;
}

.privacy li {
  list-style-position: inside;
}

.privacy h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 48px;
  margin-top: 60px;
}

@media (max-width:768px){
    .privacy h1 {
      font-size: 28px;
      margin-top: 40px;
    }
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy-content a {
  color: inherit;
  text-decoration: unset;
  opacity: 0.9;
  word-break: break-word;
}