:root {
    --dark-bg: #1C1B29;
    --light-text: #F5F5F5;
    --white: #FFFFFF;
    --honey-yellow: #FFD166;
    --mint: #06D6A0;
    --coral: #EF476F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: rgba(28, 27, 41, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--mint);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--mint), var(--honey-yellow));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: relative;
    text-decoration: none;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Menu toggle animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Smooth Scrolling with CSS */
html {
    scroll-behavior: smooth;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 27, 41, 0.95);
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
    font-size: 0.9rem;
}

.cookie-btn {
    background: linear-gradient(90deg, var(--mint), var(--honey-yellow));
    color: var(--dark-bg);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.btn {
    background: linear-gradient(90deg, var(--mint), var(--honey-yellow));
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(6, 214, 160, 0.3);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: brightness(0.5);
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-outline {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--mint);
    color: var(--mint);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background-color: rgba(6, 214, 160, 0.1);
    transform: translateY(-3px);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(6, 214, 160, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    bottom: 15%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: rgba(255, 209, 102, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: rgba(239, 71, 111, 0.1);
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--mint), var(--honey-yellow));
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-image {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.about-bg-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover .about-bg-image {
    transform: scale(1.05);
}

.about-highlights {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.highlight-icon {
    margin-right: 15px;
    margin-top: 5px;
}

.icon-bg {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    transition: all 0.3s ease;
}

.highlight-item:hover .icon-bg {
    background: rgba(6, 214, 160, 0.1);
    transform: translateY(-3px);
}

.highlight-content h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.highlight-content p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-number span {
    font-size: 1.4rem;
    color: var(--mint);
    position: absolute;
    top: 5px;
}

.stat-label {
    color: var(--light-text);
    font-size: 1rem;
}

/* Services Section Styles */
.services-section {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 25px;
}

.service-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style-type: none;
    margin-top: auto;
}

.service-features li {
    color: var(--light-text);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--mint), var(--honey-yellow));
}

/* Process Section Styles */
.process-section {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, var(--mint), var(--honey-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 25px;
}

.step-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.toggle-label {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--light-text);
    transition: color 0.3s ease;
    text-decoration: none;
}

.toggle-label.active {
    color: var(--mint);
}

.toggle-divider {
    color: var(--light-text);
    opacity: 0.5;
    margin: 0 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: var(--mint);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--mint), var(--honey-yellow));
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    color: var(--mint);
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.price-description {
    color: var(--light-text);
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style-type: none;
}

.pricing-features li {
    color: var(--light-text);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--mint), var(--honey-yellow));
}

.pricing-action {
    text-align: center;
}

.pricing-disclaimer {
    text-align: center;
    margin-top: 40px;
    color: var(--light-text);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 15px;
    max-height: 300px;
}

.testimonial-bg-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

.quote-icon {
    margin-bottom: 20px;
    color: var(--mint);
    opacity: 0.3;
}

.testimonial-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.testimonial-author h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: var(--mint);
    font-size: 0.9rem;
    margin-bottom: 0;
    font-style: normal;
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-image {
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.info-item {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-icon {
    margin-right: 20px;
}

.info-content h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.info-content a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--mint);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--light-text);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--mint);
}

.radio-options,
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
}

.radio-option input,
.checkbox-option input {
    margin-right: 10px;
    accent-color: var(--mint);
}

.checkbox-option label a {
    color: var(--mint);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.checkbox-option label a:hover {
    opacity: 0.8;
}

.form-action {
    margin-top: 30px;
}

.form-action .btn {
    width: 100%;
}

.form-error {
    margin-top: 15px;
    padding: 12px;
    background-color: rgba(239, 71, 111, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(239, 71, 111, 0.5);
    color: var(--white);
}

.form-error p {
    margin: 0;
}

/* Footer Styles */
footer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-description {
    color: var(--light-text);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--mint), var(--honey-yellow));
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

footer ul li a:hover {
    color: var(--mint);
    opacity: 1;
}

.footer-contact li {
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-contact a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-contact a:hover {
    color: var(--mint);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--light-text);
    opacity: 0.7;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-header p {
    color: var(--light-text);
    font-size: 1rem;
    opacity: 0.8;
}

.legal-content {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-section p {
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-section li {
    color: var(--light-text);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-section strong {
    color: var(--white);
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    margin-top: 60px;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thank-you-icon {
    margin-bottom: 20px;
}

.thank-you-content h1 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 2.2rem;
}

.thank-you-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-text);
}

.thank-you-actions {
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 30px;
        order: -1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(28, 27, 41, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transition: all 0.4s ease;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
    }
    
    .nav-menu.active {
        max-height: 500px;
        visibility: visible;
        padding: 20px 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .radio-options,
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .thank-you-section {
        padding: 50px 0;
    }
    
    .thank-you-content {
        padding: 30px 20px;
    }
    
    .thank-you-content h1 {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 5px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 5px;
    }
    
    .service-card, 
    .pricing-card, 
    .testimonial-card,
    .step-item,
    .stat-item,
    .info-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .shape {
        display: none; /* Hide shapes on mobile to prevent overflow */
    }
}

/* Fix for horizontal scrolling on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Ensure SVGs don't cause overflow */
svg {
    max-width: 100%;
} 