/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: linear-gradient(135deg, #1a1f36 0%, #2d3748 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 54, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #00ff88;
    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;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #e2e8f0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-accept {
    background: #00ff88;
    color: #1a1f36;
}

.btn-accept:hover {
    background: #00e674;
    transform: translateY(-2px);
}

.btn-decline {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid #4a5568;
}

.btn-decline:hover {
    border-color: #00ff88;
    color: #00ff88;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    margin: 0 auto;
    display: block;
    width: fit-content;
    text-decoration: none;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #00ff88;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Main Content */
.main {
    padding: 40px 0;
}

.article {
    background: rgba(45, 55, 72, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

/* Hero Image */
.hero-image {
    margin: 40px 0;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Content Sections */
.intro-section,
.content-section,
.summary-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(26, 31, 54, 0.5);
    border-radius: 15px;
    border-left: 4px solid #00ff88;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.intro-section:hover,
.content-section:hover,
.summary-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.1);
}

.content-section h2,
.intro-section h2,
.summary-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 20px;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, transparent);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #e2e8f0;
    margin: 25px 0 15px 0;
    position: relative;
    padding-left: 20px;
}

.content-section h3::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-size: 14px;
}

.content-section p,
.intro-section p,
.summary-section p {
    font-size: 16px;
    color: #cbd5e0;
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.7;
}

/* Summary Section Special Styling */
.summary-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(26, 31, 54, 0.8));
    border: 2px solid #00ff88;
    border-left: 4px solid #00ff88;
}

.summary-section h2 {
    color: #00ff88;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.summary-section p {
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    color: #e2e8f0;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: rgba(26, 31, 54, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright p {
    color: #a0aec0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .article {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .content-section h2,
    .intro-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
    
    .intro-section,
    .content-section,
    .summary-section {
        margin: 25px 0;
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.7rem;
    }
    
    .article {
        padding: 20px;
    }
    
    .intro-section,
    .content-section,
    .summary-section {
        padding: 15px;
    }
    
    .content-section h2,
    .intro-section h2 {
        font-size: 1.3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

              .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;
                }

                