/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0F0C29 0%, #24243e 50%, #302B63 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(13, 12, 34, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 25px rgba(139, 92, 246, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

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

.logo h1 {
    background: linear-gradient(45deg, #8B5CF6, #D946EF, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: bold;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #E2E8F0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #D946EF;
    text-shadow: 0 0 10px rgba(217, 70, 239, 0.8);
    transform: translateY(-1px);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #8B5CF6, #D946EF);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 100%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0F0C29 0%, #24243e 30%, #302B63 70%, #512DA8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.1) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, #8B5CF6, #D946EF, #A855F7, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5)); }
    100% { filter: drop-shadow(0 0 25px rgba(217, 70, 239, 0.8)); }
}

.hero-content p {
    font-size: 1.2rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(203, 213, 225, 0.3);
}

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

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #7C3AED, #9333EA);
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(139, 92, 246, 0.6);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: #D946EF;
    border: 2px solid #D946EF;
    position: relative;
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.3);
    text-shadow: 0 0 5px rgba(217, 70, 239, 0.5);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #D946EF, #A855F7);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(217, 70, 239, 0.6);
    border-color: #D946EF;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: rgba(13, 12, 34, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #8B5CF6, #D946EF, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 27, 75, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3), 0 0 20px rgba(217, 70, 239, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #D946EF;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
}

.service-card p {
    color: #CBD5E1;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background: rgba(30, 27, 75, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact-info h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #8B5CF6, #D946EF, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item h3 {
    color: #D946EF;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 8px rgba(217, 70, 239, 0.3);
}

.contact-item a {
    color: #8B5CF6;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #D946EF;
    text-shadow: 0 0 8px rgba(217, 70, 239, 0.5);
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1E1B4B 0%, #8B5CF6 50%, #D946EF 100%);
    color: white;
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(217, 70, 239, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    color: #ccc;
    position: relative;
    z-index: 2;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
    backdrop-filter: blur(15px);
    color: white;
    padding: 1rem 0;
    z-index: 1001;
    border-top: 3px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 -5px 25px rgba(139, 92, 246, 0.3);
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-banner p {
    flex: 1;
    margin: 0;
}

.cookie-banner a {
    color: #ccc;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: white;
}

.btn-accept, .btn-decline {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(45deg, #10B981, #059669);
    color: white;
    margin-right: 10px;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.btn-accept:hover {
    background: linear-gradient(45deg, #059669, #047857);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    transform: translateY(-1px);
}

.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #8B5CF6;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(30, 27, 75, 0.95) 50%, rgba(217, 70, 239, 0.9) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(217, 70, 239, 0.15) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFFFFF, #E0E7FF, #C4B5FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    background: linear-gradient(45deg, #8B5CF6, #D946EF, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
}

.about-text h2:first-child {
    margin-top: 0;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: #666;
}

.process-section {
    padding: 80px 0;
    background: rgba(30, 27, 75, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: rgba(30, 27, 75, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.expertise-card h3 {
    color: #D946EF;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(217, 70, 239, 0.3);
}

/* Services Page Styles */
.services-detailed {
    padding: 80px 0;
}

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(30, 27, 75, 0.9);
    border-radius: 15px;
    align-items: start;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(217, 70, 239, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.service-detailed:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.service-detailed:nth-child(even) .service-image {
    order: 2;
}

.service-detailed:nth-child(even) .service-content {
    order: 1;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.service-content h2 {
    background: linear-gradient(45deg, #8B5CF6, #D946EF, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
    position: relative;
    z-index: 2;
}

.service-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-pricing {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(217, 70, 239, 0.1));
    border-radius: 10px;
    color: #8B5CF6;
    font-size: 1.1rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 6px rgba(139, 92, 246, 0.3);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 27, 75, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(217, 70, 239, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6, #D946EF);
    color: white;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #D946EF;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(217, 70, 239, 0.4);
    position: relative;
    z-index: 2;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5), 0 0 20px rgba(139, 92, 246, 0.2);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info-container {
    background: rgba(30, 27, 75, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-info-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(217, 70, 239, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact-info-container .contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e5e9;
}

.contact-info-container .contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-info-container h3 {
    background: linear-gradient(45deg, #8B5CF6, #D946EF, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
    position: relative;
    z-index: 2;
}

.contact-info-container small {
    color: #666;
    font-size: 0.875rem;
}

.contact-info-container ol {
    padding-left: 1.2rem;
}

.contact-info-container ol li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(217, 70, 239, 0.9) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(217, 70, 239, 0.15) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

.contact-cta h2 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    background: linear-gradient(45deg, #8B5CF6, #D946EF, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 2rem 0 1rem 0;
    font-size: 1.6rem;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.legal-content h3 {
    background: linear-gradient(45deg, #A855F7, #8B5CF6, #D946EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.4));
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: rgba(30, 27, 75, 0.9);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(217, 70, 239, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: statsPulse 6s ease-in-out infinite alternate;
}

@keyframes statsPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
    border-color: rgba(217, 70, 239, 0.6);
}

.stat-card:hover::before {
    opacity: 1;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateX(-200%); }
    100% { transform: rotate(45deg) translateX(200%); }
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #8B5CF6, #D946EF, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.stat-label {
    color: #CBD5E1;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 8px rgba(203, 213, 225, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: rgba(13, 12, 34, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(217, 70, 239, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #8B5CF6, #D946EF, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(30, 27, 75, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
    border-color: rgba(217, 70, 239, 0.5);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #CBD5E1;
    font-style: italic;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(203, 213, 225, 0.2);
}

.testimonial-content p::before {
    content: '"';
    font-size: 2rem;
    color: #D946EF;
    position: absolute;
    top: -0.5rem;
    left: -1rem;
}

.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: #D946EF;
}

.testimonial-author {
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding-top: 1rem;
    position: relative;
    z-index: 2;
}

.author-info h4 {
    color: #D946EF;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 8px rgba(217, 70, 239, 0.4);
}

.author-info span {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: rgba(30, 27, 75, 0.9);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(217, 70, 239, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: teamGlow 8s ease-in-out infinite alternate;
}

@keyframes teamGlow {
    0% { opacity: 0.4; }
    100% { opacity: 0.9; }
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #8B5CF6, #D946EF, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.team-member {
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
    border-color: rgba(217, 70, 239, 0.5);
}

.team-member:hover::before {
    opacity: 1;
}

.member-info {
    position: relative;
    z-index: 2;
}

.member-info h3 {
    color: #D946EF;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
}

.member-info span {
    color: #A855F7;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

.member-info p {
    color: #CBD5E1;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(203, 213, 225, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detailed,
    .service-detailed:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-detailed:nth-child(even) .service-image,
    .service-detailed:nth-child(even) .service-content {
        order: unset;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-cta h2 {
        font-size: 1.8rem;
    }
}