/* 
 * Main Stylesheet for domain.com
 * Color palette:
 * - Gradient: #ff4ec6 (fuschia) to #28c7db (turquoise)
 * - Dark purple: #2a0a49
 * - Neon lime: #d5ff5e
 * - White: #ffffff
 * - Off-white: #f6f6f6
 */

/* ---------- Base Styles ---------- */
:root {
    --color-fuschia: #ff4ec6;
    --color-turquoise: #28c7db;
    --color-dark-purple: #2a0a49;
    --color-neon-lime: #d5ff5e;
    --color-white: #ffffff;
    --color-offwhite: #f6f6f6;
    --gradient-main: linear-gradient(135deg, var(--color-fuschia) 0%, var(--color-turquoise) 100%);
    --shadow-main: 0 8px 30px rgba(42, 10, 73, 0.3);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-dark-purple);
    background-color: var(--color-offwhite);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-fuschia);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-turquoise);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-dark-purple);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

ul {
    list-style: none;
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background: var(--gradient-main);
    position: absolute;
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 1rem auto 0;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

/* ---------- Header & Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--color-dark-purple);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-svg {
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: var(--color-dark-purple);
    font-weight: 600;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-main);
    color: var(--color-white) !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-main);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(42, 10, 73, 0.4);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--color-dark-purple);
    margin: 6px 0;
    transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
    background: var(--gradient-main);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out forwards;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-in-out 0.3s forwards;
    opacity: 0;
}

.hero-text .cta-button {
    background: var(--color-neon-lime);
    color: var(--color-dark-purple) !important;
    font-size: 1.1rem;
    padding: 15px 30px;
    animation: fadeIn 1s ease-in-out 0.6s forwards;
    opacity: 0;
}

.hero-image {
    width: 45%;
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-main);
}

/* ---------- About Section ---------- */
.about {
    background-color: var(--color-white);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    width: 45%;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-main);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text {
    width: 50%;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

/* ---------- Services Section ---------- */
.services {
    background-color: var(--color-offwhite);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 2rem;
    box-shadow: var(--shadow-main);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-main);
    border-radius: 50%;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* ---------- Advantages Section ---------- */
.advantages {
    background-color: var(--color-dark-purple);
    color: var(--color-white);
}

.advantages .section-title h2 {
    color: var(--color-white);
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.advantage-icon {
    background: var(--gradient-main);
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.advantage-icon svg {
    width: 25px;
    height: 25px;
    color: var(--color-white);
}

.advantage-text h3 {
    color: var(--color-neon-lime);
    margin-bottom: 0.5rem;
}

.advantage-text p {
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    background-color: var(--color-white);
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-offwhite);
    border-radius: var(--border-radius);
    padding: 2rem;
    width: calc(33.33% - 20px);
    box-shadow: var(--shadow-main);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 78, 198, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.testimonial-author-avatar svg {
    width: 25px;
    height: 25px;
    color: var(--color-white);
}

.testimonial-author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.testimonial-author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

/* ---------- Contact Form Section ---------- */
.contact {
    background: var(--gradient-main);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.contact .section-title h2 {
    color: var(--color-white);
}

.contact .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-form-wrapper {
    width: 55%;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-main);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info {
    width: 40%;
    color: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-main);
}

.contact-info h3 {
    color: var(--color-neon-lime);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neon-lime);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info a {
    color: var(--color-white);
    text-decoration: underline;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--color-neon-lime);
}

.contact-image {
    margin-top: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-main);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-neon-lime);
    background-color: rgba(255, 255, 255, 0.3);
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--color-neon-lime);
    background-color: rgba(255, 255, 255, 0.3);
}

.form-select option {
    background-color: var(--color-dark-purple);
    color: var(--color-white);
    padding: 10px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check-label {
    color: var(--color-white);
    font-size: 0.9rem;
}

.form-check-label a {
    color: var(--color-neon-lime);
    text-decoration: underline;
}

.submit-button {
    background: var(--color-neon-lime);
    color: var(--color-dark-purple);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    margin: 0 auto;
    box-shadow: var(--shadow-main);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(42, 10, 73, 0.4);
}

/* ---------- FAQ Section ---------- */
.faq {
    background-color: var(--color-offwhite);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-main);
}

.faq-question {
    background-color: var(--color-white);
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--color-dark-purple);
    display: block;
    text-decoration: none;
}

.faq-question::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-fuschia);
    transition: var(--transition);
}

.faq-answer {
    background-color: var(--color-white);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    border-top: 0px solid rgba(42, 10, 73, 0.1);
}

.faq-answer-inner {
    padding: 0 0 1.5rem;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    border-top: 1px solid rgba(42, 10, 73, 0.1);
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--color-dark-purple);
    color: var(--color-white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 10px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact h3,
.footer-links h3,
.footer-legal h3 {
    color: var(--color-neon-lime);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: var(--color-turquoise);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.7rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-turquoise);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ---------- Cookie Popup ---------- */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-dark-purple);
    color: var(--color-white);
    padding: 1.5rem;
    z-index: 1001;
    transition: var(--transition);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    padding-right: 20px;
}

#accept-cookies {
    background: var(--color-neon-lime);
    color: var(--color-dark-purple);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

#accept-cookies:hover {
    transform: scale(1.05);
}

/* ---------- Legal Pages ---------- */
.legal-page {
    padding: 10rem 0 5rem;
}

.legal-content {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-main);
}

.legal-content h1 {
    margin-bottom: 2rem;
    color: var(--color-dark-purple);
}

.legal-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content ul {
    padding-left: 2rem;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* ---------- Thank You Page ---------- */
.thank-you {
    padding: 10rem 0 5rem;
    text-align: center;
}

.thank-you-content {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-main);
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    color: var(--color-white);
}

.thank-you h1 {
    margin-bottom: 1.5rem;
}

.thank-you .home-link {
    display: inline-block;
    margin-top: 1.5rem;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1100px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        width: calc(50% - 15px);
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form-wrapper,
    .contact-info {
        width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 900px) {
    .header-content {
        height: 70px;
    }
    
    .nav-toggle-label {
        display: block;
        z-index: 1002;
    }
    
    .main-nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--color-dark-purple);
        overflow: hidden;
        transition: all 0.4s ease;
        z-index: 1001;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 80px 20px 30px;
        opacity: 0;
        transition: opacity 0.3s ease 0.1s;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .main-nav a {
        color: var(--color-white);
        font-size: 1.2rem;
    }
    
    .nav-toggle:checked ~ .main-nav {
        height: 100vh;
    }
    
    .nav-toggle:checked ~ .main-nav ul {
        opacity: 1;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
        background-color: var(--color-white);
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
        background-color: var(--color-white);
    }
    
    .hero-content, 
    .about-content {
        flex-direction: column;
    }
    
    .hero-text, 
    .hero-image,
    .about-text,
    .about-image {
        width: 100%;
    }
    
    .hero-text {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .advantages-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
        padding-right: 0;
        text-align: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
} 