/* Base Styles */
:root {
    --primary-color: #0077cc;
    --secondary-color: #00aa55;
    --accent-color: #ff9900;
    --text-color: #333333;
    --light-text: #777777;
    --dark-bg: #222222;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #44bb77;
    --error-color: #bb4444;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section__header {
    text-align: center;
    margin-bottom: 5rem;
}

.section__title {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section__subtitle {
    font-size: 1.8rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.6rem;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn--primary:hover {
    background-color: #006bb3;
    color: var(--white);
}

.btn--secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn--secondary:hover {
    background-color: #009149;
    color: var(--white);
}

.btn--small {
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
}

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

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav__list {
    display: flex;
}

.nav__item {
    margin-left: 3rem;
}

.nav__link {
    font-weight: 600;
    color: var(--text-color);
    position: relative;
}

.nav__link:hover, .nav__link.active {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav__link:hover::after, .nav__link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero__content {
    max-width: 600px;
    z-index: 1;
}

.hero__title {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__text {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 0;
}

/* Benefits Section */
.benefits {
    padding: 10rem 0;
    background-color: var(--light-bg);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.benefit__item {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background-color: rgba(0, 119, 204, 0.1);
    color: var(--primary-color);
}

.benefit__icon i {
    font-size: 3rem;
}

.benefit__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefit__text {
    color: var(--light-text);
}

/* Services Section */
.services {
    padding: 10rem 0;
}

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

.service__item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service__image {
    height: 250px;
    overflow: hidden;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service__item:hover .service__image img {
    transform: scale(1.1);
}

.service__content {
    padding: 2.5rem;
    background-color: var(--white);
}

.service__title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service__text {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.service__link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.service__link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.service__link:hover::after {
    margin-left: 1rem;
}

/* Products Section */
.products {
    padding: 10rem 0;
    background-color: var(--light-bg);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product__item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product__image {
    height: 250px;
    overflow: hidden;
}

.product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product__item:hover .product__image img {
    transform: scale(1.1);
}

.product__content {
    padding: 2.5rem;
}

.product__title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.product__text {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.product__features {
    margin-bottom: 2rem;
}

.product__features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

.product__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* FAQ Section */
.faq {
    padding: 10rem 0;
}

.faq__grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
}

.faq__question h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.faq__icon {
    transition: var(--transition);
}

.faq__answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--light-bg);
}

.faq__item.active .faq__question {
    background-color: var(--primary-color);
    color: var(--white);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__item.active .faq__answer {
    padding: 2rem;
    max-height: 500px;
}

/* Testimonials Section */
.testimonials {
    padding: 10rem 0;
    background-color: var(--light-bg);
}

.testimonials__slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial__item {
    padding: 2rem;
}

.testimonial__content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial__content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 30px;
    background-color: var(--white);
    transform: rotate(45deg);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.testimonial__text {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.testimonial__author {
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.testimonial__author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 2rem;
    object-fit: cover;
}

.author__info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.author__info p {
    color: var(--light-text);
    font-size: 1.4rem;
}

.rating {
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.testimonials__nav {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.testimonials__prev, .testimonials__next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: var(--shadow);
    margin: 0 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.testimonials__prev:hover, .testimonials__next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* About Section */
.about {
    padding: 10rem 0;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__text {
    margin-bottom: 2rem;
}

.about__stats {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
}

.stat__item {
    text-align: center;
}

.stat__number {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat__text {
    font-size: 1.6rem;
    color: var(--light-text);
}

.about__image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 10rem 0;
    background-color: var(--light-bg);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
}

.contact__icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.contact__icon i {
    font-size: 2rem;
}

.contact__details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact__details p {
    color: var(--light-text);
}

.contact__social {
    margin-top: 2rem;
}

.social__icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social__icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact__form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form__group {
    margin-bottom: 2rem;
}

.form__group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form__group input, .form__group select, .form__group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1.6rem;
}

.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
}

.form__checkbox input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.form__checkbox label {
    font-weight: normal;
    font-size: 1.4rem;
}

/* Map Section */
.map {
    height: 450px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 5rem;
}

.footer__logo {
    margin-bottom: 2rem;
}

.footer__logo img {
    height: 60px;
    width: auto;
}

.footer__text {
    color: #ccc;
    margin-bottom: 2rem;
}

.footer__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer__links li {
    margin-bottom: 1rem;
}

.footer__links a {
    color: #ccc;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer__contact li {
    display: flex;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.footer__contact li i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.footer__contact a {
    color: #ccc;
}

.footer__contact a:hover {
    color: var(--primary-color);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    color: #999;
    font-size: 1.4rem;
}

.footer__legal {
    display: flex;
}

.footer__legal a {
    color: #ccc;
    margin-left: 2rem;
    font-size: 1.4rem;
}

.footer__legal a:hover {
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    padding: 1.5rem 0;
    z-index: 999;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.cookie-content p {
    margin-right: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    background-color: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(-50px);
    transition: var(--transition);
}

.modal.show .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--light-text);
}

.modal__icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.modal__title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.modal__text {
    margin-bottom: 3rem;
    color: var(--light-text);
}

.modal__button {
    min-width: 150px;
}

/* Thank You Page */
.thank-you {
    padding: 15rem 0 10rem;
    text-align: center;
}

.thank-you__inner {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you__icon {
    font-size: 8rem;
    color: var(--success-color);
    margin-bottom: 3rem;
}

.thank-you__title {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.thank-you__text {
    margin-bottom: 2rem;
    color: var(--light-text);
}

.thank-you__buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.related-products {
    padding: 5rem 0 10rem;
    background-color: var(--light-bg);
}

.related-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.related-product__item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-product__item:hover {
    transform: translateY(-10px);
}

.related-product__image {
    height: 200px;
}

.related-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-product__content {
    padding: 2rem;
    text-align: center;
}

.related-product__title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.related-product__text {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

/* Legal Pages */
.legal {
    padding: 15rem 0 10rem;
}

.legal__header {
    text-align: center;
    margin-bottom: 5rem;
}

.legal__title {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.legal__date {
    color: var(--light-text);
}

.legal__content {
    max-width: 900px;
    margin: 0 auto;
}

.legal__section {
    margin-bottom: 4rem;
}

.legal__section h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.legal__section h3 {
    font-size: 2rem;
    margin: 2rem 0 1.5rem;
}

.legal__section p, .legal__section ul, .legal__section ol {
    margin-bottom: 1.5rem;
}

.legal__section ul, .legal__section ol {
    padding-left: 2rem;
}

.legal__section ul li, .legal__section ol li {
    margin-bottom: 1rem;
    list-style-type: disc;
}

.contact-list {
    margin-top: 2rem;
}

.contact-list li {
    margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav.show {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        padding: 3rem 0;
    }

    .nav__item {
        margin: 0;
        text-align: center;
    }

    .nav__link {
        display: block;
        padding: 1.5rem 0;
        font-size: 2rem;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .services__grid, .products__grid, .related-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__inner, .contact__inner {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 10rem 0;
    }

    .hero__title {
        font-size: 3.6rem;
    }

    .services__grid, .products__grid, .related-products__grid {
        grid-template-columns: 1fr;
    }

    .testimonial__content {
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .thank-you__buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer__legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer__legal a {
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .about__stats {
        flex-direction: column;
        gap: 2rem;
    }

    .footer__inner {
        grid-template-columns: 1fr;
    }

    .modal__content {
        padding: 3rem 2rem;
    }
}