/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-submit {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #000;
    color: #fff;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-outline {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
}

.btn-submit {
    background-color: #000;
    color: #fff;
    width: 100%;
}

.btn-submit:hover {
    background-color: #333;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e3a8a;
    color: white;
    padding: 20px;
    z-index: 10000;
    display: block;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept,
.btn-essential {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #fff;
    color: #1e3a8a;
}

.btn-accept:hover {
    background-color: #f3f4f6;
}

.btn-essential {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-essential:hover {
    background-color: #fff;
    color: #1e3a8a;
}

/* Header */
.header {
    background-color: #1e3a8a;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e5e7eb;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background-color: #f8fafc;
    padding: 120px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
    line-height: 1.2;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-header p {
    font-size: 18px;
    color: #666;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #f8fafc;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
   
    width: 100%;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Community Section */
.community {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.community h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.community p {
    font-size: 18px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Webinars Section */
.webinars {
    padding: 80px 0;
    background-color: #f8fafc;
}

.webinar-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.webinar-item:last-child {
    margin-bottom: 0;
}

.webinar-image img {
    width: 100%;
    border-radius: 10px;
}

.webinar-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.webinar-date {
    font-size: 14px;
    color: #1e3a8a;
    font-weight: 500;
    margin-bottom: 15px;
}

.webinar-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #000;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.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;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #000;
}

.services-image {
    max-width: 800px;
    margin: 0 auto;
}

.services-image img {
    width: 100%;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

/* Footer */
.footer {
    background-color: #1e3a8a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e5e7eb;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link img {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #e5e7eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #1e3a8a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-header h2 {
        font-size: 28px;
    }

    .about-header p {
        font-size: 16px;
    }

    .why-choose h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .community h2 {
        font-size: 28px;
    }

    .community p {
        font-size: 16px;
    }

    .webinar-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
    }

    .services h2 {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-content h3 {
        font-size: 20px;
    }

    .cookie-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .about,
    .why-choose,
    .community,
    .webinars,
    .faq,
    .services,
    .contact {
        padding: 60px 0;
    }

    .about-header h2,
    .why-choose h2,
    .community h2,
    .faq h2,
    .services h2 {
        font-size: 24px;
    }

    .feature-item {
        padding: 20px;
    }

    .webinar-content h3 {
        font-size: 20px;
    }

    .btn-primary,
    .btn-outline,
    .btn-submit {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section spacing for anchor links */
section {
    scroll-margin-top: 80px;
}

/* Thank You Page Styles */
.thank-you {
    padding: 120px 0 80px;
    background-color: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.checkmark {
    display: inline-block;
    animation: checkmark-appear 0.6s ease-in-out;
}

@keyframes checkmark-appear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.thank-you-message {
    margin-bottom: 40px;
}

.thank-you-message .lead {
    font-size: 24px;
    font-weight: 500;
    color: #10B981;
    margin-bottom: 20px;
}

.thank-you-message p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.contact-info > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.contact-details {
    text-align: left;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.contact-item strong {
    color: #000;
    display: inline-block;
    width: 80px;
}

@media (max-width: 768px) {
    .thank-you h1 {
        font-size: 36px;
    }
    
    .thank-you-message .lead {
        font-size: 20px;
    }
    
    .thank-you-message p {
        font-size: 16px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-info {
        padding: 20px;
        text-align: center;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-item strong {
        display: block;
        width: auto;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .thank-you {
        padding: 100px 0 60px;
    }
    
    .thank-you h1 {
        font-size: 28px;
    }
    
    .checkmark svg {
        width: 60px;
        height: 60px;
    }
}
              .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;
                }

                