/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    text-align: left;
}

.cookie-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #FF6B47;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #e55a3f;
}

.btn-secondary {
    background: transparent;
    color: #FF6B47;
    border: 2px solid #FF6B47;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #FF6B47;
    color: white;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
  color: #F95C39;
font-family: Raleway;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 30px */
text-transform: uppercase;
text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF6B47;
}

/* Burger Menu */
.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 2px 0;
    transition: 0.3s;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #666;
}

.cta-btn {
    background: #FF6B47;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #e55a3f;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Not for Everyone Section */
.not-for-everyone {
    padding: 80px 0;
    background: white;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.text-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #666;
}

.text-content p strong {
    color: #2c3e50;
    font-weight: 600;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* How We Think Section */
.how-we-think {
    padding: 80px 0;
    background: #f8f9fa;
}

.how-we-think h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.thinking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.thinking-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thinking-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thinking-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    gap: 60px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) .service-content {
    direction: ltr;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #666;
}

/* Momentum Section */
.momentum {
    padding: 80px 0;
    background: #f8f9fa;
}

.momentum-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.momentum-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.momentum-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #666;
}

.momentum-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* News Section */
.news {
    padding: 80px 0;
    background: white;
}

.news h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 24px;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

.news-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a252f;
    padding: 40px 0;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header Mobile */
    .burger-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* Sections Mobile */
    .section-content,
    .momentum-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .service-item:nth-child(even) {
        direction: ltr;
    }

    .thinking-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Typography Mobile */
    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
    }

    .cookie-content {
        margin: 20px;
        padding: 30px;
    }

    .cookie-content h3 {
        font-size: 24px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .thinking-item,
    .news-content {
        padding: 24px;
    }

    .service-image img {
        height: 250px;
    }

    .cookie-content {
        padding: 24px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid #FF6B47;
    outline-offset: 2px;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.section-content,
.thinking-item,
.service-item,
.news-item {
    animation: fadeIn 0.6s ease-out;
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                