/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f6f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background: #e67e22;
    color: white;
}

.cookie-btn.accept:hover {
    background: #d35400;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.decline:hover {
    background: white;
    color: #2c3e50;
}

/* Header */
.header {
    background: #f8f6f0;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e67e22;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: #f8f6f0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-label {
    background: #e67e22;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.highlight-box h2 {
    color: #2c3e50;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.7;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Content Sections */
.holding-back {
    padding: 4rem 0;
    background: white;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5a6c7d;
}

.features-list li::before {
    content: "•";
    color: #e67e22;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.emphasis {
    font-style: italic;
    color: #2c3e50;
    font-weight: 600;
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Context Section */
.context-section {
    padding: 4rem 0;
    background: #f8f6f0;
}

.context-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.context-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.context-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.context-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.context-item p {
    color: #5a6c7d;
    margin: 0;
}

/* Tools Section */
.tools-section {
    padding: 4rem 0;
    background: white;
}

.tools-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.tool-item {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 10px;
}

.tool-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tool-item p {
    color: #5a6c7d;
    margin: 0;
}

/* Questions Section */
.questions-section {
    padding: 4rem 0;
    background: #f8f6f0;
}

.questions-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.question-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.question-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.question-icon.orange {
    background: #e67e22;
}

.question-icon.blue {
    background: #3498db;
}

.question-icon.green {
    background: #27ae60;
}

.question-item p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.member-avatar.blue {
    background: #3498db;
}

.member-avatar.orange {
    background: #e67e22;
}

.member-avatar.gray {
    background: #95a5a6;
}

.team-member h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.team-member p {
    color: #5a6c7d;
    margin: 0;
}

/* Formats Section */
.formats-section {
    padding: 4rem 0;
    background: #f8f6f0;
}

.formats-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.formats-list {
    max-width: 800px;
    margin: 0 auto;
}

.format-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.format-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.format-number.blue {
    background: #3498db;
}

.format-number.orange {
    background: #e67e22;
}

.format-number.green {
    background: #27ae60;
}

.format-number.purple {
    background: #9b59b6;
}

.format-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.format-content p {
    color: #5a6c7d;
    margin: 0;
}

/* Insights Section */
.insights-section {
    padding: 4rem 0;
    background: white;
}

.insights-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-item {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 10px;
}

.insight-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.insight-item p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.insight-date {
    color: #95a5a6;
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #2c3e50;
    color: white;
}

.contact-section h2 {
    text-align: center;
    color: white;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    color: #bdc3c7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    background: white;
    color: #2c3e50;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.3);
}

.submit-btn {
    background: #e67e22;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #d35400;
}

/* Thank You Section */
.thank-you-section {
    padding: 8rem 0;
    background: #f8f6f0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    background: white;
    padding: 4rem 2rem;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content h1 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.thank-you-content p {
    color: #5a6c7d;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.back-btn {
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.back-btn:hover {
    background: #34495e;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-contact h4,
.footer-legal h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #e67e22;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #f8f6f0;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image img,
    .section-image img {
        height: 250px;
    }

    .context-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .questions-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .format-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .thank-you-content {
        margin: 0 20px;
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .context-item,
    .tool-item,
    .question-item,
    .team-member,
    .insight-item {
        padding: 1.5rem;
    }

    .format-item {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .thank-you-content h1 {
        font-size: 1.5rem;
    }

    .thank-you-content p {
        font-size: 1rem;
    }
}

              .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;
                }

                