/* Main Variables */
:root {
    --color-bg: #1B1F3A;
    --color-accent-1: #F2CB05;
    --color-accent-2: #9B5DE5;
    --color-accent-3: #00F5D4;
    --color-text: #F7F7F7;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --container-width: 1200px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-accent-1);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

a {
    color: var(--color-accent-1);
    text-decoration: none;
    transition: color var(--transition-speed);
    position: relative;
    z-index: 2;
}

a:hover {
    color: var(--color-accent-3);
}

ul {
    list-style: none;
    position: relative;
    z-index: 2;
}

img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

/* Section Styling */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 31, 58, 0.8);
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--color-accent-2);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--color-accent-1);
    color: var(--color-bg);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-weight: bold;
    text-transform: uppercase;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    background-color: var(--color-accent-2);
    color: var(--color-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-accent-1);
    color: var(--color-accent-1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background-color: var(--color-accent-1);
    color: var(--color-bg);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(27, 31, 58, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    position: relative;
    z-index: 1001;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--color-text);
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.logo svg {
    margin-right: 10px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}

.logo span {
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-3));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.8));
}

.navigation {
    z-index: 1001;
}

.navigation ul {
    display: flex;
}

.navigation li {
    margin-left: var(--spacing-lg);
}

.navigation a {
    color: var(--color-text);
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent-3);
    transition: width var(--transition-speed);
}

.navigation a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--color-accent-1);
    color: var(--color-bg) !important;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.nav-cta:hover {
    background-color: var(--color-accent-2);
    color: var(--color-text) !important;
}

.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition-speed);
    display: block;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;  /* Center horizontally */
    background: linear-gradient(rgba(27, 31, 58, 0.7), rgba(27, 31, 58, 0.85)), url('./img/p3Jf3M.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(155, 93, 229, 0.1), transparent 60%);
    animation: pulse 8s infinite;
    z-index: 0;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

.hero-content {
    max-width: 700px;
    padding: var(--spacing-lg);
    position: relative;
    z-index: 3;
    text-align: center; /* Center text */
    /* Removed background, box-shadow and border */
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
    color: var(--color-accent-3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
    justify-content: center; /* Center buttons */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    position: relative;
    background-color: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    text-align: left;
}

.about-content h2::after {
    left: 0;
    transform: none;
}

/* Services Section */
.services {
    background-color: rgba(22, 25, 46, 0.9);
    position: relative;
    padding: var(--spacing-xl) 0;
}

.services::before {
    background: rgba(22, 25, 46, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 5;
}

.service-card {
    background: linear-gradient(145deg, rgba(35, 40, 65, 0.95), rgba(27, 31, 58, 0.98));
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 5;
    border: 2px solid rgba(155, 93, 229, 0.3);
}

.service-card p, .service-card ul, .service-card h3 {
    color: var(--color-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.service-card h3 {
    color: var(--color-accent-1);
    font-size: 1.6rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.service-card ul {
    padding-left: 20px;
    margin-bottom: var(--spacing-md);
    list-style: disc;
}

.service-card ul li {
    margin-bottom: 8px;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Advantages Section */
.advantages {
    background: linear-gradient(145deg, rgba(27, 31, 58, 0.95), rgba(35, 40, 65, 0.9));
    position: relative;
    padding: var(--spacing-xl) 0;
}

.advantages::before {
    background: rgba(27, 31, 58, 0.8);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 5;
}

.advantage-card {
    background: rgba(35, 40, 65, 0.9);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--color-accent-2);
    transition: all var(--transition-speed);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(155, 93, 229, 0.3);
    position: relative;
    z-index: 5;
}

.advantage-card p {
    color: var(--color-text);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.advantage-card h3 {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    color: var(--color-accent-1);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.advantage-card h3::before {
    content: '✓';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--color-accent-1);
    color: var(--color-bg);
    border-radius: 50%;
    margin-right: var(--spacing-md);
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Process Section */
.process {
    background-color: rgba(22, 25, 46, 0.9);
    position: relative;
    padding: var(--spacing-xl) 0;
}

.process::before {
    background: rgba(22, 25, 46, 0.7);
}

.process-steps {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.step {
    display: flex;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: var(--color-accent-2);
    z-index: 1;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent-1);
    color: var(--color-bg);
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: var(--spacing-lg);
    flex-shrink: 0;
    position: relative;
    z-index: 6;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.step-content {
    flex: 1;
    background: rgba(35, 40, 65, 0.95);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(155, 93, 229, 0.3);
}

.step-content p {
    color: var(--color-text);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.step-content h3 {
    color: var(--color-accent-1);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 1.4rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(27, 31, 58, 0.9), rgba(27, 31, 58, 0.9)), url('./img/q4kulf.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: var(--spacing-xl) 0;
}

.testimonials::before {
    background: rgba(27, 31, 58, 0.8);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.testimonial {
    background: rgba(35, 40, 65, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    margin: 0 var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-left: 4px solid var(--color-accent-3);
    border: 2px solid rgba(155, 93, 229, 0.3);
    position: relative;
    z-index: 5;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 5;
}

.testimonial-content p {
    color: var(--color-text);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -20px;
    top: -20px;
    opacity: 0.2;
    color: var(--color-accent-1);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: var(--spacing-md);
    object-fit: cover;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.author-name {
    font-weight: bold;
    color: var(--color-accent-1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--color-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Contact Section */
.contact {
    position: relative;
    background: linear-gradient(145deg, rgba(27, 31, 58, 0.9), rgba(35, 40, 65, 0.8));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    margin-bottom: var(--spacing-md);
}

.contact-details {
    margin-bottom: var(--spacing-lg);
    background: rgba(35, 40, 65, 0.7);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.contact-icon {
    width: 24px;
    margin-right: var(--spacing-md);
    color: var(--color-accent-1);
}

/* Form Styling */
.contact-form {
    background: rgba(35, 40, 65, 0.8);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(155, 93, 229, 0.3);
    z-index: 2;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-3));
    z-index: 1;
}

.form-group {
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(35, 40, 65, 0.7);
    border: 2px solid rgba(155, 93, 229, 0.3);
    border-radius: var(--border-radius);
    color: var(--color-text);
    transition: all var(--transition-speed);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent-2);
    box-shadow: 0 0 0 3px rgba(155, 93, 229, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.checkbox-group input {
    margin-right: var(--spacing-sm);
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.checkbox-group a {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Add styles for form error messages */
.form-error {
    background-color: rgba(255, 50, 50, 0.1);
    border-left: 4px solid #ff3232;
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

/* Map */
.map-container {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

/* Removed filter styles that would affect the iframe */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: rgba(22, 25, 46, 0.95);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo svg {
    margin-right: var(--spacing-sm);
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}

.footer h3 {
    color: var(--color-accent-1);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-contact ul li {
    margin-bottom: var(--spacing-sm);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links ul li {
    margin-bottom: var(--spacing-sm);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    text-align: center;
    border-top: 1px solid rgba(247, 247, 247, 0.1);
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(35, 40, 65, 0.95);
    padding: var(--spacing-lg);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cookie-content p {
    margin: 0;
    padding-right: var(--spacing-lg);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-accept {
    background-color: var(--color-accent-1);
    color: var(--color-bg);
    border: none;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-speed);
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-accept:hover {
    background-color: var(--color-accent-3);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Policy Pages */
.policy {
    padding: 150px 0 var(--spacing-xl);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(35, 40, 65, 0.8);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(155, 93, 229, 0.2);
}

.policy h1 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.policy-section {
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-accent-3);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.policy-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: var(--spacing-md);
}

.policy-section ul li {
    margin-bottom: var(--spacing-sm);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.policy-date {
    font-style: italic;
    text-align: right;
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.policy-actions {
    text-align: center;
}

/* Thank You Page */
.thank-you {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(rgba(27, 31, 58, 0.8), rgba(27, 31, 58, 0.8)), url('./img/PuEhw6.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.thank-you-content {
    max-width: 600px;
    padding: var(--spacing-lg);
    background: rgba(35, 40, 65, 0.85);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
    z-index: 2;
    border: 1px solid rgba(155, 93, 229, 0.2);
}

.thank-you-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-3));
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background-color: var(--color-accent-1);
    color: var(--color-bg);
    font-size: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(242, 203, 5, 0.4);
    position: relative;
    z-index: 2;
}

.thank-you h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.thank-you p {
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.thank-you-actions {
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .advantages-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(27, 31, 58, 0.95);
        padding: var(--spacing-md);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .navigation.active {
        display: block;
    }
    
    .navigation ul {
        flex-direction: column;
    }
    
    .navigation li {
        margin: 0;
        margin-bottom: var(--spacing-md);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        max-width: 100%;
        padding: var(--spacing-md);
        margin: 0 var(--spacing-md);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }

    .hero-buttons .btn {
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: var(--spacing-md);
        padding-right: 0;
    }
} 