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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content h3 {
    margin-bottom: 5px;
    color: #ffffff;
}

.cookie-content p {
    color: #d1d5db;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cookie-buttons button:first-child {
    background: #2563eb;
    color: white;
}

.cookie-buttons button:first-child:hover {
    background: #1d4ed8;
}

.cookie-buttons button:nth-child(2) {
    background: #6b7280;
    color: white;
}

.cookie-buttons button:nth-child(2):hover {
    background: #4b5563;
}

.cookie-buttons button:last-child {
    background: transparent;
    color: #d1d5db;
    border: 1px solid #6b7280;
}

.cookie-buttons button:last-child:hover {
    background: #6b7280;
    color: white;
}

/* Cookie Modal Styles */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-modal-header h2 {
    margin: 0;
    color: #1f2937;
    font-size: 1.5rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.cookie-modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-modal-body > p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.cookie-category-item {
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cookie-category-info h3 {
    margin: 0 0 8px 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.cookie-category-info p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Cookie Switch Styles */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    margin-top: 2px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-switch input:checked + .cookie-slider {
    background-color: #2563eb;
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.cookie-switch input:disabled + .cookie-slider:before {
    background-color: #f3f4f6;
}

.cookie-modal-footer {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.cookie-modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-modal-btn.secondary {
    background: #f3f4f6;
    color: #374151;
}

.cookie-modal-btn.secondary:hover {
    background: #e5e7eb;
}

.cookie-modal-btn.primary {
    background: #2563eb;
    color: white;
}

.cookie-modal-btn.primary:hover {
    background: #1d4ed8;
}

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 900;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 60px;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1d4ed8;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 30px;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text ul {
    list-style: none;
    margin-top: 30px;
}

.about-text ul li {
    color: #374151;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.about-visual {
    display: flex;
    justify-content: center;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
}

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

.newsletter-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form button {
    background: #ffffff;
    color: #2563eb;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f3f4f6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 25px;
    border: none;
    background: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item h3 {
    color: #1f2937;
    margin-bottom: 5px;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background: #1d4ed8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #2563eb;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Service Pages Styles */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.service-hero h1 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: bold;
}

.service-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    line-height: 1.6;
}

.service-content {
    padding: 80px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.main-content h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 25px;
}

.main-content h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin: 40px 0 20px;
}

.main-content h4 {
    font-size: 1.4rem;
    color: #2563eb;
    margin: 30px 0 15px;
}

.main-content h5 {
    font-size: 1.2rem;
    color: #1f2937;
    margin: 20px 0 10px;
}

.main-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.main-content ul {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}

.main-content ul li {
    margin-bottom: 8px;
}

/* Service Features */
.service-feature {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-content h4 {
    margin-top: 0;
}

/* Warning and Highlight Boxes */
.warning-box, .highlight-box, .alert-box {
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #fbbf24;
    background: #fffbeb;
}

.warning-box h3, .highlight-box h3, .alert-box h3 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 15px;
}

.warning-box p, .highlight-box p, .alert-box p {
    color: #78350f;
    margin: 0;
}

/* Process Steps */
.process-steps, .process-timeline {
    margin: 40px 0;
}

.step, .timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number, .timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4, .timeline-content h4 {
    margin-top: 0;
}

/* Scenario and Category Lists */
.scenario-list, .indicator-list {
    list-style: none;
    padding: 0;
}

.scenario-list li, .indicator-list li {
    padding: 15px;
    margin-bottom: 10px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.error-category, .conflict-category {
    margin: 30px 0;
    padding: 25px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.error-category h4, .conflict-category h4 {
    margin-top: 0;
    color: #1f2937;
}

/* Success Stories and Case Studies */
.success-stories, .case-studies, .optimization-cases {
    margin: 40px 0;
}

.success-story, .case-study, .case-example {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.story-icon, .case-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.case-title h4 {
    margin: 0;
}

.case-tag {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Check Indicators */
.check-indicators {
    background: #f0fdf4;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #059669;
    margin: 30px 0;
}

.check-indicators h4 {
    color: #065f46;
    margin-top: 0;
}

/* Legal Process Phases */
.legal-process {
    margin: 40px 0;
}

.process-phase {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.phase-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Cost Information */
.cost-info {
    background: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.cost-breakdown {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.cost-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.cost-item h5 {
    margin-top: 0;
    color: #2563eb;
}

.cost-note {
    background: #dbeafe;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.cost-note h5 {
    margin-top: 0;
    color: #1d4ed8;
}

/* Deadline Warnings */
.deadline-warnings {
    margin: 30px 0;
}

.deadline-item {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.deadline-item.urgent {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
}

.deadline-item h4 {
    color: #dc2626;
    margin-top: 0;
}

.deadline-tip {
    background: #f0f9ff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #0ea5e9;
}

.deadline-tip h4 {
    color: #0c4a6e;
    margin-top: 0;
}

/* Strategy Sections */
.strategy-section {
    margin: 40px 0;
}

.strategy-item {
    display: flex;
    gap: 20px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.strategy-icon {
    flex-shrink: 0;
}

.strategy-content h5 {
    margin-top: 0;
    color: #1f2937;
}

/* Calculation Services */
.calculation-service {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.calc-feature {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.calc-feature h4 {
    margin-top: 0;
    color: #2563eb;
}

/* Consulting Process */
.consulting-process {
    margin: 40px 0;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

/* Special Situations */
.special-situations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.situation {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.situation h4 {
    margin-top: 0;
    color: #2563eb;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-box, .checklist-box, .stats-box, .fact-box, .related-services, 
.calculator-box, .optimization-potential, .tip-box, .success-stats, .legal-note {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.contact-box.urgent {
    background: #fef2f2;
    border-color: #fecaca;
}

.contact-box h3, .checklist-box h3, .stats-box h3, .fact-box h3, 
.related-services h3, .calculator-box h3, .optimization-potential h3, 
.tip-box h3, .success-stats h3, .legal-note h3 {
    color: #1f2937;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 20px;
    font-size: 0.95rem;
}

.contact-info p {
    margin-bottom: 15px;
    color: #6b7280;
}

.document-checklist {
    list-style: none;
    padding: 0;
}

.document-checklist li {
    padding: 8px 0;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.document-checklist li:last-child {
    border-bottom: none;
}

.stat-item, .potential-item {
    text-align: center;
    margin-bottom: 20px;
}

.stat-number, .potential-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2563eb;
    display: block;
}

.stat-label, .potential-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 5px;
}

.cta-button.emergency {
    background: #dc2626;
    color: white;
    margin-bottom: 10px;
}

.cta-button.emergency:hover {
    background: #b91c1c;
}

/* Service CTA Section */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    padding: 20px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Thank You Page Styles */
.thanks-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: bold;
}

.thanks-message {
    font-size: 1.3rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.subscriber-email {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}

.subscriber-email p {
    margin: 0;
    color: #374151;
}

.what-next {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.what-next h2 {
    color: #1f2937;
    margin-bottom: 30px;
    font-size: 2rem;
}

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

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

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.newsletter-benefits {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.newsletter-benefits h2 {
    color: #1f2937;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    text-align: center;
    padding: 25px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.immediate-actions {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.immediate-actions h2 {
    color: #1f2937;
    margin-bottom: 20px;
    font-size: 2rem;
}

.immediate-actions p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #2563eb;
    padding: 15px 30px;
    border: 2px solid #2563eb;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #2563eb;
    color: white;
}

.social-follow {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.social-follow h3 {
    color: #1f2937;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.social-follow .social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-follow .social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.social-follow .social-links a:hover {
    color: #2563eb;
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    background: white;
}

.legal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.legal-header h1 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: bold;
}

.legal-intro {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-body h2 {
    font-size: 1.8rem;
    color: #1f2937;
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.legal-body h2:first-child {
    border-top: none;
    padding-top: 0;
}

.legal-body h3 {
    font-size: 1.4rem;
    color: #2563eb;
    margin: 30px 0 15px;
}

.legal-body h4 {
    font-size: 1.2rem;
    color: #1f2937;
    margin: 25px 0 10px;
}

.legal-body p {
    color: #374151;
    margin-bottom: 15px;
}

.legal-body ul, .legal-body ol {
    color: #374151;
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-body ul li, .legal-body ol li {
    margin-bottom: 8px;
}

.legal-body a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-body a:hover {
    color: #1d4ed8;
}

.contact-info-legal {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #2563eb;
}

.contact-info-legal p {
    margin-bottom: 10px;
}

.contact-info-legal p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
    text-align: center;
    color: #6b7280;
}

/* Cookie-specific styles */
.cookie-category {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #fbbf24;
}

.cookie-table {
    margin: 30px 0;
}

.cookie-entry {
    background: #f9fafb;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.cookie-entry h4 {
    color: #2563eb;
    margin-top: 0;
    margin-bottom: 15px;
}

.cookie-controls {
    text-align: center;
    margin: 30px 0;
}

.cookie-control-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-control-btn:hover {
    background: #1d4ed8;
}

.browser-instructions {
    margin: 30px 0;
}

.browser-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #059669;
}

.browser-item h4 {
    color: #1f2937;
    margin-top: 0;
    margin-bottom: 10px;
}

.browser-item p {
    color: #6b7280;
    margin: 0;
    font-family: monospace;
    font-size: 0.9rem;
}

.third-party-list {
    margin: 20px 0;
}

.third-party-item {
    background: #fff5f5;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #fecaca;
}

.third-party-item h4 {
    color: #dc2626;
    margin-top: 0;
    margin-bottom: 15px;
}

.cookie-lifetime {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.lifetime-item {
    background: #f0fdf4;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #059669;
}

.lifetime-item h4 {
    color: #065f46;
    margin-top: 0;
    margin-bottom: 10px;
}

.lifetime-item p {
    color: #047857;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .nav-menu {
        display: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services h2,
    .about-text h2,
    .newsletter h2,
    .faq h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .contact-form {
        padding: 30px 20px;
    }
}