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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: rgba(209, 213, 219, 1);
    background-color: rgba(17, 24, 39, 1);
    overflow-x: hidden;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d1b2a;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #b3c5ef;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #2196f3;
    color: white;
}

.cookie-btn.accept:hover {
    background: #1976d2;
}

.cookie-btn.decline {
    background: transparent;
    color: #b3c5ef;
    border: 1px solid #415a77;
}

.cookie-btn.decline:hover {
    background: #415a77;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-brand .logo {
    height: 40px;
}

.nav-brand {
  color: #fff;
  text-decoration: unset;
  font-weight: 800;
  font-size: 23px;
  line-height: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-link:hover {
    color: #2196f3;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('./images/hero-section.png') no-repeat center;
    background-size: cover;
    padding: 80px 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #b3c5ef;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2196f3;
    color: white;
}

.btn-primary:hover {
    background: #1976d2;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2196f3;
    border-color: #2196f3;
}

.btn-secondary:hover {
    background: #2196f3;
    color: white;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2196f3;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.4;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #2196f3;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 60px;
    color: #b3c5ef;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease;
}

@media (min-width:768px){
  .service-card--50 {
    max-width: calc(50% - 24px);
  }
}

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

.service-icon {
    width: auto;
    height: 192px;
    margin: 0 auto 24px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.service-card p {
    line-height: 1.7;
}

/* Sectors Section */
.sectors {
    padding: 80px 0;
}

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

.sector-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.sector-image {
    width: 100%;
    height: 128px;
    object-fit: cover;
    margin-bottom: 32px;
    border-radius: 8px;
}

.sector-content {
    
}

.sector-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.sector-content p {
    color: #b3c5ef;
    line-height: 1.7;
}

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

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2196f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.step-content p {
    line-height: 1.4;
}

.approach-img {
    width: 100%;
    height: auto;
}

/* Knowledge Section */
.knowledge {
    padding: 80px 0;
}

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

.knowledge-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.knowledge-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.knowledge-card p {
    color: #b3c5ef;
    line-height: 1.7;
    margin-bottom: 24px;
}

.knowledge-link {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: color 0.3s ease;
}

.knowledge-link:hover {
    color: #1976d2;
}

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

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 32px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.faq-toggle {
    font-size: 2rem;
    color: #2196f3;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    opacity: 0;
    padding: 0 32px 32px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: max-content;
    opacity: 1;
    
}

.faq-answer p {
    color: #b3c5ef;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2196f3;
}

.contact-info > p {
    font-size: 1.125rem;
    color: #b3c5ef;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-item p {
    color: #b3c5ef;
    line-height: 1.7;
}

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

.social-links a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #1976d2;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
}

.form-container h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.form-container > p {
    color: #b3c5ef;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196f3;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b3c5ef;
}

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

/* Footer */
.footer {
    padding: 40px 0;
    background: #0a1129;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 32px;
}

.footer-info p {
    color: #b3c5ef;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #b3c5ef;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2196f3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 50px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 50px);
        background: rgba(15, 23, 42, 1);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 60px;
        gap: 16px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 16px 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .about-content,
    .approach-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-visual {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.large {
        grid-column: 1;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-step {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .service-card,
    .knowledge-card,
    .form-container {
        padding: 24px;
    }
    
    .sector-content {
        padding: 24px;
    }
    
    .faq-question {
        padding: 24px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 24px;
    }
    
    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 80px;
}

.policy {
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.policy h1 {
  font-weight: 800;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0px;
  margin-bottom: 24px;
}

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

.policy-content li {
  list-style-position: inside;
}