/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', 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: #4285f4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #3367d6;
}

.btn-secondary {
    background: transparent;
    color: #4285f4;
    border: 2px solid #4285f4;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #4285f4;
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 16px;
    color: #666;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 4px 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;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #4285f4;
    text-decoration: none;
}

.logo-icon {
    font-size: 24px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #4285f4;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.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);
}

/* Main content */
main {
    margin-top: 70px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Thanks Section */
.thanks-section {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
}

.thanks-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.what-next {
    margin: 40px 0;
}

.what-next h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.what-next h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
}

.what-next ul {
    list-style: none;
    padding-left: 0;
}

.what-next li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.what-next li:before {
    content: "•";
    color: #4285f4;
    position: absolute;
    left: 0;
}

.why-trust {
    margin: 40px 0;
}

.why-trust h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.why-trust p {
    color: #666;
    line-height: 1.6;
}

/* Join Community Section */
.join-community {
    padding: 80px 0;
    background: #f8f9fa;
}

.join-community h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 32px;
    text-align: center;
}

.join-community p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Mentors Section */
.mentors {
    padding: 80px 0;
}

.mentors h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}

.mentors > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 48px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.mentor-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mentor-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.mentor-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 20px 20px 12px 20px;
}

.mentor-card p {
    color: #666;
    line-height: 1.5;
    margin: 0 20px 20px 20px;
    font-size: 0.95rem;
}

/* Why RateStars Section */
.why-ratestars {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.why-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.why-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 24px;
}

.why-text li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.why-text li:before {
    content: "✓";
    color: #4285f4;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Courses Section */
.courses {
    padding: 80px 0;
}

.courses h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 48px;
    text-align: center;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.course-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    text-align: center;
}

.course-card:hover {
    border-color: #4285f4;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.15);
}

.course-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
}

.course-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: #4285f4;
}

.price .period {
    font-size: 1rem;
    color: #666;
}

/* Partnership Section */
.partnership {
    padding: 80px 0;
    background: #f8f9fa;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partnership-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.partnership-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.partnership-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Start Section */
.start-section {
    padding: 80px 0;
}

.start-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.start-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.start-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.start-text .btn-primary {
    margin-top: 12px;
}

.start-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Registration Section */
.registration {
    padding: 80px 0;
    background: #f8f9fa;
}

.registration h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 48px;
    text-align: center;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4285f4;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #4285f4;
    border-color: #4285f4;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #4285f4;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.registration-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 48px;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 32px 24px;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    color: #ccc;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .why-content,
    .partnership-content,
    .start-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .start-content {
        grid-template-rows: auto auto;
    }
    
    .start-image {
        order: -1;
    }
    
    .mentors-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-content {
        padding: 24px;
        margin: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .join-community,
    .mentors,
    .why-ratestars,
    .courses,
    .partnership,
    .start-section,
    .registration,
    .contact {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
    
    .course-card,
    .mentor-card {
        margin: 0 auto;
        max-width: 300px;
    }
}
              .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;
                }

                