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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-secondary:hover {
    background: #6366f1;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.cookie-content p {
    margin-bottom: 15px;
    color: #666;
}

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

.cookie-buttons .btn {
    flex: 1;
    min-width: 120px;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    text-decoration: none;
}

.nav-desktop {
    display: flex;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-desktop a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: #6366f1;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile ul {
    list-style: none;
    padding: 20px;
}

.nav-mobile li {
    margin-bottom: 15px;
}

.nav-mobile a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Hero Section */
.hero {
    background: url(../img/banner.webp) no-repeat center/cover;
    color: white;
    padding: 150px 0 100px;
    /* text-align: center; */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/hero-pattern.png') center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
}

/* Insights Section */
.insights {
    padding: 100px 0;
    background: #f8fafc;
}

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

.insights-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insights-text h2 {
    color: #1e293b;
    margin-bottom: 20px;
}

.insights-text p {
    color: #64748b;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #3730a3 100%);
    color: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    /* text-align: center; */
    transition: transform 0.3s ease;
}

.services-price{
 background: #6E52FF;
 font-family: "Open Sans";
font-weight: 700;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
padding: 12px 0;
margin-bottom: 24px;

}

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

.service-card h3 {
    margin-bottom: 15px;
    color: #a5b4fc;
}

.service-card p {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 25px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonials-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonials-text h2 {
    color: #1e293b;
    margin-bottom: 20px;
}

.testimonials-text p {
    color: #64748b;
    line-height: 1.8;
}

/* Investment Section */
.investment {
    padding: 100px 0;
    background: #f8fafc;
}

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

.investment-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.investment-text h2 {
    color: #1e293b;
    margin-bottom: 20px;
}

.investment-text p {
    color: #64748b;
    line-height: 1.8;
}

/* Theory Section */
.theory {
    padding: 100px 0;
 background: linear-gradient(180deg, #111727 0%, #181347 100%);
}

.theory h2 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 2.5rem;
}

.theory p{
  color:#fff;
  margin-bottom: 48px;
} 

.theory-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.theory-item {
    /* text-align: center; */
    padding: 30px 20px;
    border-radius: 32px;
border: 1px solid #6E52FF;
background: #2C2C4D;
}

.theory-item h3 {
    color: #fff;
    margin-bottom: 15px;
}

.theory-item p {
    color: #fff;
    line-height: 1.6;
}

/* Structure Section */
.structure {
    padding: 100px 0;
    background: #f8fafc;
   
}

.structure h2 {
    color: #1e293b;
    margin-bottom: 20px;
}

.structure p {
    color: #000;
    margin: 0 0 40px;
    line-height: 1.8;
}

.structure-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
    font-size: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.faq-item {
    padding: 30px;
border-radius: 32px;
border: 1px solid #6E52FF;
background: #F4F6FF;
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form {
    padding: 100px 0;
background: linear-gradient(180deg, #111727 0%, #181347 100%);
    color: white;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact-form > p {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
 color: #3E3E3E;
    transition: border-color 0.3s ease;
    border-radius: 12px;
border: 1px solid #E4E6EE;
background: #F4F6FF;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    border-radius: 15px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item .icon {
    font-size: 1.2rem;
}

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

.footer-links a {
    color: #a5b4fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #334155;
}

.footer-copyright p {
    color: #94a3b8;
    margin: 0;
}

/* Content Pages Styles */
.content-page {
    padding: 150px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-wrapper h1 {
    color: #1e293b;
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-align: center;
}

.content-text h2 {
    color: #1e293b;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.content-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-text ul {
    color: #64748b;
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-text ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    color: #94a3b8;
    font-style: italic;
}

/* Thank You Page Styles */
.thank-you {
    background: url(../img/banner-2.webp) no-repeat center/cover;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/hero-pattern.png') center/cover;
    opacity: 0.1;
}

.thank-you-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.8;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.additional-info {
    padding: 80px 0;
    background: #f8fafc;
}

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

.info-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-item h3 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-item ul {
    list-style: none;
    padding: 0;
}

.info-item ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
}

.info-item ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.info-item ul li:last-child {
    border-bottom: none;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #64748b;
}

.contact-info strong {
    color: #1e293b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-page {
        padding: 120px 0 60px;
    }
    
    .content-wrapper {
        padding: 40px 30px;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .content-text h2 {
        font-size: 1.3rem;
    }
    
    .thank-you {
        padding: 120px 0 80px;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-content p {
        font-size: 1.1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        padding: 30px 20px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .insights-content,
    .testimonials-content,
    .investment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .investment-content {
        grid-template-rows: auto auto;
    }
    
    .investment-text {
        order: 1;
    }
    
    .investment-image {
        order: 2;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .theory-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .services h2,
    .theory h2,
    .faq h2,
    .contact-form h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .content-wrapper {
        padding: 30px 20px;
    }
    
    .content-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-content p {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }
}

.privacy{
  margin: 69px 0 0;
  padding: 48px 0;
}

.privacy-title{
  color: #0A0A0A;
font-family: "Open Sans";
font-size: clamp(32px,5vw,40px);
font-style: normal;
font-weight: 700;
line-height: normal;
}