/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #F5F5F5;
    background: linear-gradient(135deg, #1F1F1F 0%, #2B2B2B 100%);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #F5F5F5;
    word-wrap: break-word;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #F5F5F5;
    word-wrap: break-word;
}

a {
    color: #AEEA00;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #F5F5F5;
    text-shadow: 0 0 10px #AEEA00;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(174, 234, 0, 0.2);
    animation: slideDown 0.6s ease-out;
    width: 100%;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
}

.nav__brand {
    flex-shrink: 0;
}

.nav__logo {
    display: block;
    transition: transform 0.3s ease;
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    font-size: 0.9rem;
    color: #F5F5F5;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3F51B5, #AEEA00);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    background: linear-gradient(135deg, #AEEA00, #3F51B5);
    color: #1F1F1F;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(174, 234, 0, 0.3);
    white-space: nowrap;
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(174, 234, 0, 0.4);
    color: #1F1F1F;
}

/* Mobile Menu Styles */
.nav__mobile-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.nav__mobile-line {
    width: 25px;
    height: 3px;
    background: #F5F5F5;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav__mobile-btn.active .nav__mobile-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav__mobile-btn.active .nav__mobile-line:nth-child(2) {
    opacity: 0;
}

.nav__mobile-btn.active .nav__mobile-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav__mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(31, 31, 31, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(174, 234, 0, 0.2);
    padding: 2rem;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav__mobile-menu.active {
    transform: translateY(0);
}

.nav__mobile-link,
.nav__mobile-cta {
    display: block;
    padding: 1rem 0;
    color: #F5F5F5;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid rgba(174, 234, 0, 0.1);
    transition: all 0.3s ease;
}

.nav__mobile-cta {
    background: linear-gradient(135deg, #AEEA00, #3F51B5);
    color: #1F1F1F;
    margin-top: 1rem;
    border-radius: 25px;
    border-bottom: none;
    font-weight: 600;
}

.nav__mobile-link:hover,
.nav__mobile-cta:hover {
    color: #AEEA00;
    background: rgba(174, 234, 0, 0.1);
}

.nav__mobile-cta:hover {
    color: #1F1F1F;
    background: linear-gradient(135deg, #AEEA00, #3F51B5);
    transform: translateY(-2px);
}

/* Main Content */
.main {
    margin-top: 80px;
    width: 100%;
    overflow-x: hidden;
}

/* Section Styles */
.section {
    padding: 4rem 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.section__title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    word-wrap: break-word;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3F51B5, #AEEA00);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(63, 81, 181, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/QVJ9NB.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    padding: 0 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #F5F5F5, #AEEA00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #F5F5F5;
    opacity: 0.9;
    word-wrap: break-word;
}

.hero__cta {
    display: inline-block;
    background: linear-gradient(135deg, #AEEA00, #3F51B5);
    color: #1F1F1F;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(174, 234, 0, 0.3);
    animation: pulse 2s infinite;
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(174, 234, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(174, 234, 0, 0.5);
        transform: translateY(-2px);
    }
}

.hero__cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(174, 234, 0, 0.5);
    color: #1F1F1F;
}

/* About Section */
.about {
    background: rgba(63, 81, 181, 0.05);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.about__text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about__image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    animation: slideInRight 1s ease-out;
    width: 100%;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about__image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.about__image:hover img {
    transform: scale(1.05);
}

/* Why Choose Us Section */
.features {
    padding: 5rem 0;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.feature__card {
    background: rgba(43, 43, 43, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(174, 234, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.feature__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(174, 234, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature__card:hover::before {
    left: 100%;
}

.feature__card:hover {
    transform: translateY(-5px);
    border-color: #AEEA00;
    box-shadow: 0 10px 30px rgba(174, 234, 0, 0.2);
}

.feature__icon {
    font-size: 3rem;
    color: #AEEA00;
    margin-bottom: 1rem;
}

.feature__title {
    color: #F5F5F5;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.feature__description {
    color: rgba(245, 245, 245, 0.8);
    word-wrap: break-word;
}

/* Services Section */
.services {
    background: rgba(31, 31, 31, 0.5);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.service__card {
    background: rgba(43, 43, 43, 0.9);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
}

.service__card:hover {
    border-color: #AEEA00;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(174, 234, 0, 0.2);
}

.service__image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.7), rgba(174, 234, 0, 0.3));
}

.service__content {
    padding: 2rem;
}

.service__title {
    color: #AEEA00;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.service__price {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: #F5F5F5;
    margin-bottom: 1rem;
}

.service__description {
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.service__features {
    list-style: none;
    margin-bottom: 2rem;
}

.service__features li {
    padding: 0.5rem 0;
    color: rgba(245, 245, 245, 0.9);
    position: relative;
    padding-left: 1.5rem;
    word-wrap: break-word;
}

.service__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #AEEA00;
    font-weight: bold;
}

.service__cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #3F51B5, #AEEA00);
    color: #F5F5F5;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.service__cta:hover {
    background: linear-gradient(135deg, #AEEA00, #3F51B5);
    color: #1F1F1F;
    transform: translateY(-2px);
}

/* Trust Section */
.trust {
    padding: 5rem 0;
    background: radial-gradient(circle at center, rgba(174, 234, 0, 0.05) 0%, transparent 70%);
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.trust__item {
    text-align: center;
    padding: 2rem;
    background: rgba(43, 43, 43, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(174, 234, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.trust__item:hover {
    border-color: #AEEA00;
    background: rgba(43, 43, 43, 0.8);
}

.trust__icon {
    font-size: 4rem;
    color: #AEEA00;
    margin-bottom: 1rem;
}

.trust__title {
    color: #F5F5F5;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.trust__description {
    color: rgba(245, 245, 245, 0.8);
    word-wrap: break-word;
}

/* Testimonials Section */
.testimonials {
    background: rgba(31, 31, 31, 0.8);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.testimonial__card {
    background: rgba(43, 43, 43, 0.9);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #AEEA00;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(174, 234, 0, 0.1);
}

.testimonial__quote {
    color: rgba(245, 245, 245, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    word-wrap: break-word;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3F51B5, #AEEA00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F5F5;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial__info h4 {
    color: #AEEA00;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
}

.testimonial__info p {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
    margin: 0;
    word-wrap: break-word;
}

/* Statistics Section */
.stats {
    padding: 4rem 0;
    background: rgba(63, 81, 181, 0.05);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.stat__item {
    text-align: center;
    padding: 2rem;
}

.stat__number {
    font-family: 'Roboto Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #AEEA00;
    margin-bottom: 0.5rem;
}

.stat__label {
    color: #F5F5F5;
    font-weight: 500;
    word-wrap: break-word;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.9), rgba(43, 43, 43, 0.9));
}

.form__container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(43, 43, 43, 0.9);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(174, 234, 0, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.form__title {
    text-align: center;
    margin-bottom: 2rem;
    color: #AEEA00;
    word-wrap: break-word;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    color: #F5F5F5;
    font-weight: 500;
    word-wrap: break-word;
}

.form__input,
.form__select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(174, 234, 0, 0.3);
    border-radius: 10px;
    background: rgba(31, 31, 31, 0.8);
    color: #F5F5F5;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: #AEEA00;
    box-shadow: 0 0 0 3px rgba(174, 234, 0, 0.1);
}

.form__radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.form__radio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(31, 31, 31, 0.6);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.form__radio-item:hover {
    border-color: rgba(174, 234, 0, 0.5);
}

.form__radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #AEEA00;
    flex-shrink: 0;
}

.form__radio-item input[type="radio"]:checked + .form__radio-label {
    color: #AEEA00;
}

.form__radio-label {
    color: #F5F5F5;
    font-weight: 500;
    word-wrap: break-word;
    flex: 1;
}

.form__checkbox-group {
    margin-top: 2rem;
}

.form__checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(31, 31, 31, 0.6);
    border-radius: 10px;
    width: 100%;
}

.form__checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #AEEA00;
    margin-top: 2px;
    flex-shrink: 0;
}

.form__checkbox-label {
    color: #F5F5F5;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    flex: 1;
}

.form__checkbox-label a {
    color: #AEEA00;
}

.form__submit {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #AEEA00, #3F51B5);
    color: #1F1F1F;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-sizing: border-box;
}

.form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(174, 234, 0, 0.4);
}

.form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1F1F1F, #2B2B2B);
    border-top: 2px solid rgba(174, 234, 0, 0.2);
    padding: 3rem 0 1rem;
    width: 100%;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    width: 100%;
}

.footer__brand {
    max-width: 300px;
    width: 100%;
}

.footer__description {
    margin-top: 1rem;
    color: rgba(245, 245, 245, 0.8);
    font-size: 0.9rem;
    word-wrap: break-word;
}

.footer__title {
    color: #AEEA00;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    word-wrap: break-word;
}

.footer__info p {
    margin-bottom: 1rem;
    color: rgba(245, 245, 245, 0.8);
    word-wrap: break-word;
}

.footer__info strong {
    color: #F5F5F5;
}

.footer__info a {
    color: #AEEA00;
    word-wrap: break-word;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    color: rgba(245, 245, 245, 0.8);
    transition: all 0.3s ease;
    word-wrap: break-word;
}

.footer__link:hover {
    color: #AEEA00;
    padding-left: 5px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(174, 234, 0, 0.1);
    width: 100%;
}

.footer__copyright p,
.footer__certification p {
    margin: 0;
    color: rgba(245, 245, 245, 0.6);
    font-size: 0.9rem;
    word-wrap: break-word;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 31, 31, 0.98);
    border-top: 2px solid #AEEA00;
    padding: 1.5rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease-out;
    width: 100%;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.cookie-consent__text {
    color: #F5F5F5;
    font-size: 0.9rem;
    margin: 0;
    word-wrap: break-word;
    flex: 1;
}

.cookie-consent__button {
    background: linear-gradient(135deg, #AEEA00, #3F51B5);
    color: #1F1F1F;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-consent__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(174, 234, 0, 0.4);
}

/* Page Styles */
.page {
    padding: 6rem 0 4rem;
    min-height: calc(100vh - 200px);
    width: 100%;
}

.page__content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(43, 43, 43, 0.6);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(174, 234, 0, 0.2);
    width: 100%;
}

.page__title {
    color: #AEEA00;
    text-align: center;
    margin-bottom: 2rem;
    word-wrap: break-word;
}

.page__content h2 {
    color: #F5F5F5;
    margin-top: 2rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.page__content p {
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
}

.page__content ul,
.page__content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.page__content li {
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

/* Thank You Page */
.thanks {
    text-align: center;
    padding: 6rem 0;
    width: 100%;
}

.thanks__icon {
    font-size: 4rem;
    color: #AEEA00;
    margin-bottom: 2rem;
}

.thanks__title {
    color: #AEEA00;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.thanks__message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(245, 245, 245, 0.9);
    word-wrap: break-word;
}

.thanks__cta {
    display: inline-block;
    background: linear-gradient(135deg, #3F51B5, #AEEA00);
    color: #F5F5F5;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.thanks__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(174, 234, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .features__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }
    
    .nav__mobile-btn {
        display: flex;
    }
    
    .nav__mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .hero__cta {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats__grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .stat__number {
        font-size: 2.5rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-consent__content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .page__content {
        padding: 2rem 1rem;
    }
    
    .form__container {
        padding: 2rem 1rem;
    }
    
    .form__radio-item {
        align-items: flex-start;
        padding: 0.75rem;
    }
    
    .form__radio-item input[type="radio"] {
        margin-top: 2px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero__title {
        font-size: 1.75rem;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
    }
    
    .hero__cta {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .form__container {
        padding: 1.5rem 0.75rem;
    }
    
    .page__content {
        padding: 1.5rem 0.75rem;
    }
    
    .feature__card,
    .service__card,
    .trust__item,
    .testimonial__card {
        padding: 1.5rem;
    }
    
    .nav__cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .stats__grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .stat__number {
        font-size: 2rem;
    }
    
    .trust__grid {
        grid-template-columns: 1fr;
    }
} 