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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    color: #f803fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff4dff;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, #f803fc, #ff4dff);
    color: #ffffff !important;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e002e8, #f803fc);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(248, 3, 252, 0.3);
}

.btn-secondary {
    background: #1a1a1a;
    color: #f803fc;
    border: 2px solid #f803fc;
}

.btn-secondary:hover {
    background: #f803fc;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #f803fc;
    border: 2px solid #f803fc;
}

.btn-outline:hover {
    background: #f803fc;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 0;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

/* Header and Navigation */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(248, 3, 252, 0.1);
}

.navbar {
    padding: 15px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f803fc;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #f803fc;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f803fc;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #f803fc;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #f803fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #b0b0b0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    border-bottom: 1px solid rgba(248, 3, 252, 0.1);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.legal-date {
    font-style: italic;
    color: #888;
    margin-top: 10px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h3 {
    margin-bottom: 20px;
    color: #f803fc;
}

.content-visual {
    text-align: center;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(248, 3, 252, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(248, 3, 252, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f803fc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
}

/* Specialists Grid */
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.specialist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(248, 3, 252, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(248, 3, 252, 0.2);
}

.specialist-info h3 {
    color: #f803fc;
    margin-bottom: 15px;
}

.specialist-skills {
    list-style: none;
    margin-top: 20px;
}

.specialist-skills li {
    padding: 8px 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 20px;
}

.specialist-skills li::before {
    content: '•';
    color: #f803fc;
    position: absolute;
    left: 0;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 60px 40px 40px;
    border: 1px solid rgba(248, 3, 252, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.advantage-card:hover {
    border-color: rgba(248, 3, 252, 0.3);
    transform: translateY(-5px);
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f803fc, #ff4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
}

.advantage-card h3 {
    margin-bottom: 15px;
    color: #f803fc;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(248, 3, 252, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.offer-card.featured {
    border-color: #f803fc;
    box-shadow: 0 10px 30px rgba(248, 3, 252, 0.2);
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f803fc, #ff4dff);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-price {
    margin: 20px 0;
}

.price-original {
    font-size: 1.2rem;
    color: #666;
    text-decoration: line-through;
    margin-right: 10px;
}

.price-discounted {
    font-size: 2rem;
    color: #f803fc;
    font-weight: 700;
}

.price-from,
.price-period {
    font-size: 1rem;
    color: #b0b0b0;
}

.offer-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.offer-features li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: #e0e0e0;
}

.offer-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f803fc;
    font-weight: bold;
}

.offer-validity {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
    font-style: italic;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(248, 3, 252, 0.1);
}

.achievement-card h3 {
    color: #f803fc;
    margin-bottom: 20px;
}

.achievement-list {
    list-style: none;
}

.achievement-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: #e0e0e0;
}

.achievement-list li::before {
    content: '🏆';
    position: absolute;
    left: 0;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(248, 3, 252, 0.1);
}

.faq-item h3 {
    color: #f803fc;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Newsletter Section */
.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(248, 3, 252, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #f803fc;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #f803fc;
    border-color: #f803fc;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(248, 3, 252, 0.1);
}

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

.footer-section h3 {
    color: #f803fc;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f803fc;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(248, 3, 252, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(248, 3, 252, 0.2);
}

.social-links a:hover {
    background: #f803fc;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 8px;
    color: #b0b0b0;
}

.contact-info strong {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(248, 3, 252, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #666;
}

/* Services Page Styles */
.services-overview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #b0b0b0;
}

.service-section {
    border-bottom: 1px solid rgba(248, 3, 252, 0.1);
}

.service-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.service-icon {
    width: 80px;
    height: 80px;
}

.service-title h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #333;
    font-size: 1.2rem;
}

.star.filled {
    color: #f803fc;
}

.rating-text {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.service-price {
    text-align: right;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: #888;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f803fc;
    display: block;
}

.price-period {
    font-size: 1rem;
    color: #b0b0b0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #e0e0e0;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f803fc;
    font-weight: bold;
}

.service-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(248, 3, 252, 0.1);
}

.detail-box {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(248, 3, 252, 0.1);
}

.detail-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-box h4 {
    color: #f803fc;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.detail-box p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.service-cta {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Pricing Options */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(248, 3, 252, 0.1);
    position: relative;
}

.pricing-card.featured {
    border-color: #f803fc;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f803fc, #ff4dff);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
}

.pricing-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #e0e0e0;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f803fc;
    font-weight: bold;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f803fc, #ff4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #f803fc;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(248, 3, 252, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #f803fc;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-details p {
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.office-hours,
.response-time {
    margin: 40px 0;
}

.office-hours h3,
.response-time h3 {
    color: #f803fc;
    margin-bottom: 20px;
}

.hours-list {
    display: grid;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(248, 3, 252, 0.1);
}

.day {
    color: #e0e0e0;
}

.time {
    color: #b0b0b0;
}

.response-list {
    list-style: none;
}

.response-list li {
    padding: 8px 0;
    color: #e0e0e0;
}

.emergency-contact {
    text-align: center;
    background: rgba(248, 3, 252, 0.1);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(248, 3, 252, 0.2);
}

.emergency-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* About Page Styles */
.mission-highlights {
    display: grid;
    gap: 30px;
}

.highlight-item {
    background: rgba(248, 3, 252, 0.1);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(248, 3, 252, 0.2);
}

.highlight-item h4 {
    color: #f803fc;
    margin-bottom: 15px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.principle-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 60px 40px 40px;
    border: 1px solid rgba(248, 3, 252, 0.1);
    position: relative;
}

.principle-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f803fc, #ff4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
}

.principle-card h3 {
    color: #f803fc;
    margin-bottom: 15px;
}

.timeline {
    display: grid;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-year {
    background: linear-gradient(135deg, #f803fc, #ff4dff);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: #f803fc;
    margin-bottom: 10px;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(248, 3, 252, 0.1);
}

.value-card h3 {
    color: #f803fc;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Legal Content Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-document {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 60px;
    border: 1px solid rgba(248, 3, 252, 0.1);
    line-height: 1.8;
}

.legal-document h2 {
    color: #f803fc;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.legal-document h3 {
    color: #ffffff;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.legal-document h4 {
    color: #b0b0b0;
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.legal-document ul,
.legal-document ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-document li {
    margin: 8px 0;
    color: #e0e0e0;
}

.contact-details {
    background: rgba(248, 3, 252, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(248, 3, 252, 0.2);
}

.contact-details p {
    margin: 10px 0;
    color: #ffffff;
}

.contact-details strong {
    color: #f803fc;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(248, 3, 252, 0.1);
}

.cookie-table th {
    background: rgba(248, 3, 252, 0.1);
    color: #f803fc;
    font-weight: 600;
}

.cookie-table td {
    color: #e0e0e0;
}

.cookie-settings-button {
    text-align: center;
    margin: 40px 0;
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-message {
    font-size: 1.2rem;
    margin: 30px 0;
    color: #b0b0b0;
}

.personalized-message {
    font-size: 1.1rem;
    margin: 20px 0;
    color: #ffffff;
}

.submission-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid rgba(248, 3, 252, 0.1);
}

.submission-details h3 {
    color: #f803fc;
    margin-bottom: 30px;
}

.next-steps {
    display: grid;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f803fc, #ff4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.step-content h4 {
    color: #f803fc;
    margin-bottom: 8px;
}

.step-content p {
    margin: 0;
    color: #b0b0b0;
}

.email-confirmation {
    background: rgba(248, 3, 252, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid rgba(248, 3, 252, 0.2);
}

.email-confirmation strong {
    color: #f803fc;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-reminder {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.urgent-contact {
    display: grid;
    gap: 15px;
    margin-top: 30px;
    text-align: left;
}

.contact-method {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.contact-method strong {
    color: #f803fc;
}

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

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(248, 3, 252, 0.1);
    text-align: center;
}

.resource-card h3 {
    color: #f803fc;
    margin-bottom: 15px;
}

/* Cookie Banner and Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    z-index: 10000;
    border-top: 1px solid rgba(248, 3, 252, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    color: #f803fc;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cookie-content p {
    margin-bottom: 25px;
    color: #b0b0b0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(248, 3, 252, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-content h3 {
    color: #f803fc;
    margin-bottom: 30px;
    text-align: center;
}

.cookie-option {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-weight: 500;
    color: #ffffff;
}

.cookie-option input[type="checkbox"] {
    margin: 0;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cookie-option p {
    margin: 10px 0 0 35px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(248, 3, 252, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Grids */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .specialists-grid,
    .advantages-grid,
    .offers-grid,
    .achievements-grid,
    .faq-grid,
    .principles-grid,
    .values-grid,
    .pricing-options,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Service Page */
    .service-header {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-price {
        text-align: center;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons,
    .thank-you-actions,
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 200px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Cookie Banner */
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    /* Legal Document */
    .legal-document {
        padding: 30px 20px;
    }

    /* Timeline */
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Thank You Steps */
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .urgent-contact .contact-method {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section {
        padding: 40px 0;
    }

    .specialist-card,
    .advantage-card,
    .offer-card,
    .achievement-card,
    .principle-card,
    .value-card,
    .pricing-card {
        padding: 25px;
    }

    .principle-card { 
        padding: 65px 25px 25px;
    }

    .legal-document {
        padding: 20px 15px;
    }

    .cookie-modal-content {
        padding: 25px;
        margin: 20px;
    }

    .thank-you-content,
    .submission-details {
        padding: 25px;
    }
    .cookie-table {
        display: none;
    }
}
option {
    background-color: #0a0a0a;
}
/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus States for Accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid #f803fc;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #f803fc;
        border-color: #ffffff;
    }
    
    .btn-outline,
    .btn-secondary {
        border-width: 3px;
    }
}
