.policy, .success,
.contact-section {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__link {
  color: #000;
}

html {
  scroll-behavior: smooth;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

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

.btn--primary {
    background-color: #000;
    color: #fff;
}

.btn--primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

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

.btn--secondary:hover {
    background-color: #000;
    color: #fff;
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h2 {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
}

.logo span {
    font-weight: 400;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav__link:hover {
    color: #000;
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background-color: #fff;
}

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

.hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin-bottom: 30px;
}

.hero__description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero__image {
    position: relative;
}

.hero__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.stats__title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: #000;
    line-height: 1.2;
}

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

.stats__card {
    background-color: #000;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
}

.stats__card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fff;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.about__text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.2;
}

.about__text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.services__title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: #000;
    line-height: 1.2;
}

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

.service__card {
    background-color: #000;
    border-radius: 30px;
    overflow: hidden;
    padding: 40px;
    text-align: center;
}

.service__image {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.service__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service__content h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service__content p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service__card .btn--secondary {
    color: #fff;
    border-color: #fff;
}

.service__card .btn--secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: #fff;
}

.benefits__title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: #000;
    line-height: 1.2;
}

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

.benefit__card {
    background-color: #000;
    padding: 40px;
    border-radius: 30px;
}

.benefit__card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.benefit__card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.contact__form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #000;
    padding: 60px 40px;
    border-radius: 30px;
}

.form__group {
    margin-bottom: 30px;
}

.form__group label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}

.form__group input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.form__group input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Footer */
.footer {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer__links a:hover {
    background-color: #fff;
    color: #000;
}

.footer__copyright {
    color: #ccc;
    font-size: 14px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 90%;
    z-index: 10000;
    transition: all 0.3s ease;
}

.cookie-popup.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(100px);
}

.cookie-popup__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.cookie-popup__content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cookie-popup__content a {
    color: #000;
    text-decoration: underline;
}

.cookie-popup__buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 20px;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats__card {
        padding: 30px 20px;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about__text h2 {
        font-size: 2rem;
    }
    
    .services__title {
        font-size: 2rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits__title {
        font-size: 2rem;
    }
    
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact__form {
        margin: 0 20px;
        padding: 40px 30px;
    }
    
    .footer__links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cookie-popup {
        bottom: 20px;
        left: 20px;
        right: 20px;
        transform: none;
        width: auto;
        max-width: none;
    }
    
    .cookie-popup.hidden {
        transform: translateY(100px);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .stats__title,
    .about__text h2,
    .services__title,
    .benefits__title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .stats,
    .about,
    .services,
    .benefits,
    .contact {
        padding: 60px 0;
    }
}