/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'K2D', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    z-index: 10000;
    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;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'K2D', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #007bff;
    color: white;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-accept:hover {
    background: #0056b3;
}

.btn-decline:hover {
    background: white;
    color: #333;
}

/* Header */
.header {
    background: #ffffff;
    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 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: #333;
}

.logo-icon {
    font-size: 24px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

.contact-btn, .footer-contact-btn {
    background: transparent;
    border: 2px solid #333;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover, .footer-contact-btn:hover {
    background: #333;
    color: white;
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: #f8f9fa;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
}

.hero-image {
    text-align: center;
    margin-top: 40px;
    max-width: 530px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: #ffffff;
}

.cta-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-btn {
    background: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin: 20px auto;
    display: block;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.about-btn {
    background: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: #ffffff;
}

.packages-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.packages-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.package-growth, .package-premium {
    background: #333;
    color: white;
}

.package-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.package-basic li, .package-enterprise li {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.package-price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.package-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.package-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Investment Section */
.investment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.investment-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.investment-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.investment-btn {
    background: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.investment-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

.investment-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #333;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
    margin-top: 40px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'K2D', sans-serif;
    font-size: 1rem;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.form-submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Thank You Section */
.thank-you-section {
    margin-top: 80px;
    padding: 120px 0;
    background: #f8f9fa;
    text-align: center;
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.thank-you-text {
    max-width: 600px;
    margin: 0 auto 40px;
}

.thank-you-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.btn-back-home {
    display: inline-block;
    background: #007bff;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: #333;
}

.footer-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #007bff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero-inner {
        flex-direction: column;
    }
    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-160%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .contact-btn {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-content,
    .investment-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2,
    .investment-text h2,
    .contact-text h2 {
        font-size: 2rem;
    }

    .packages-title,
    .thank-you-title {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .about-text h2,
    .investment-text h2,
    .contact-text h2 {
        font-size: 1.8rem;
    }

    .packages-title,
    .thank-you-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card,
.contact-form {
    animation: fadeInUp 0.6s ease-out;
}
              .page {
                padding: 180px 0 80px;
              }
              
              .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;
                }

                