/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #4A90E2;
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e6ed;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-icon svg {
    width: 40px;
    height: 40px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-text a {
    color: #4A90E2;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions .btn-primary,
.cookie-actions .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e0e6ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #4A90E2;
    letter-spacing: -0.02em;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #4A90E2;
}

.header-links {
    display: flex;
    gap: 24px;
}

.header-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-links a:hover {
    color: #4A90E2;
}

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.burger-btn span {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #4A90E2;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    color: #4A90E2;
    text-align: center;
    margin-bottom: 60px;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    height: auto;
}

.services-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-card {
    background: #f8fbff;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.service-icon.blue {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.service-icon.purple {
    background: linear-gradient(135deg, #8B5FBF 0%, #6A4C93 100%);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.service-image-large {
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Knowledge Section */
.knowledge {
    padding: 100px 0;
    background: #f8fbff;
}

.knowledge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.knowledge-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 24px;
}

.knowledge-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.knowledge-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Principles Section */
.principles {
    padding: 100px 0;
    background: white;
}

.principles h2 {
    font-size: 36px;
    font-weight: 700;
    color: #4A90E2;
    text-align: center;
    margin-bottom: 60px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.principle-card {
    text-align: center;
    padding: 32px 16px;
}

.principle-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.principle-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.principle-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.principles-images {
    width: 100%;
}

.principles-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-image {
    border-radius: 16px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #f8fbff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e6ed;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4A90E2;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

/* Thank You Page */
.thank-you {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
    min-height: 70vh;
}

.thank-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.thank-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.thank-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #4A90E2;
    line-height: 1.2;
    margin-bottom: 24px;
}

.thank-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.thank-text .btn-primary {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content,
    .knowledge-content,
    .contact-content,
    .thank-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1,
    .thank-text h1 {
        font-size: 36px;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-bottom {
        grid-template-columns: 1fr;
    }
    
    .service-image-large {
        height: 250px;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid #e0e6ed;
        transform: translateY(-140%);
        transition: transform 0.3s ease;
        z-index: 99;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    
    .header-links {
        display: none;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1,
    .thank-text h1 {
        font-size: 28px;
    }
    
    .hero-text p,
    .thank-text p {
        font-size: 16px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .services h2,
    .knowledge-text h2,
    .principles h2 {
        font-size: 28px;
    }
    
    .services,
    .knowledge,
    .principles,
    .contact,
    .thank-you {
        padding: 60px 0;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .services-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-image-large {
        height: 200px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .principles-images {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1,
    .thank-text h1 {
        font-size: 24px;
    }
    
    .services h2,
    .knowledge-text h2,
    .principles h2 {
        font-size: 24px;
    }
    
    .contact h2 {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .stats {
        text-align: center;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-image-large {
        height: 180px;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-actions .btn-primary,
    .cookie-actions .btn-secondary {
        flex: 1;
        min-width: 120px;
    }
}

              .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;
                }

                