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

:root {
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #38a169;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --background-light: #f7fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    --gradient-accent: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
}

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

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

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

p {
    margin-bottom: 1rem;
    color: #000000;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 161, 105, 0.4);
    background: linear-gradient(135deg, #48bb78 0%, #2f855a 100%);
}

.btn-secondary {
    background: rgba(56, 161, 105, 0.1);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 3px 10px rgba(56, 161, 105, 0.2);
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.35);
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(45, 55, 72, 0.3);
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid transparent;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 55, 72, 0.4);
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    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-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-accept-all, .btn-necessary, .btn-custom {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-accept-all {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 3px 12px rgba(56, 161, 105, 0.35);
}

.btn-accept-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(56, 161, 105, 0.45);
    background: linear-gradient(135deg, #48bb78 0%, #2f855a 100%);
}

.btn-necessary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 3px 12px rgba(45, 55, 72, 0.35);
}

.btn-necessary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(45, 55, 72, 0.45);
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.btn-custom {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.btn-custom:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

.cookie-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
}

.cookie-option {
    margin: 20px 0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-save, .btn-cancel {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.btn-save {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.35);
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.45);
    background: linear-gradient(135deg, #48bb78 0%, #2f855a 100%);
}

.btn-cancel {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 55, 72, 0.35);
}

.btn-cancel:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 55, 72, 0.45);
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    color: var(--accent-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    overflow: hidden;
}

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

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

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Core Services */
.core-services {
    padding: 80px 0;
    background: white;
}

.core-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.core-services .service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: left;
}

.core-services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.core-services .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.core-services .service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    flex: 1;
}

.service-title h3 {
    margin: 0 0 8px 0;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.service-pricing .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-pricing .price-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.core-services .service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-tag {
    background: var(--background-light);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.highlight-tag i {
    font-size: 0.75rem;
    color: var(--accent-color);
}

.highlight-tag:hover i {
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-container {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.feature-card:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-icon {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
}

.feature-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: var(--background-light);
}

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

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-details {
    margin-top: 30px;
}

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

.contact-item i {
    color: var(--accent-color);
    width: 20px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author i {
    font-size: 2rem;
    color: var(--accent-color);
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-logo i {
    color: var(--accent-color);
}

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legal Pages Styles */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

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

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.last-updated {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
}

.legal-content {
    padding: 80px 0;
    background: var(--background-white);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.table-of-contents {
    background: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-light);
}

.table-of-contents h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    border-left: 3px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.table-of-contents a:hover {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    background: rgba(56, 161, 105, 0.1);
}

.legal-text {
    max-width: 800px;
    line-height: 1.8;
}

.legal-text section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.legal-text section:last-child {
    border-bottom: none;
}

.legal-text h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    font-weight: 700;
}

.legal-text h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.legal-text h4 {
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.legal-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.legal-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.legal-list ol li:before {
    content: none;
}

.important-note, .info-box, .warning-box, .fee-note, .liability-note, .security-note {
    background: var(--background-light);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow-light);
}

.important-note {
    background: rgba(56, 161, 105, 0.1);
    border-left-color: var(--accent-color);
}

.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border-left-color: #ffc107;
}

.warning-box i {
    color: #ffc107;
}

.important-note p, .info-box p, .warning-box p, .fee-note p, .liability-note p, .security-note p {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.important-note i, .info-box i, .fee-note i, .liability-note i, .security-note i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-details {
    background: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 25px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

/* Cookie Policy Specific Styles */
.cookie-settings-panel {
    background: var(--background-light);
    padding: 60px 0;
}

.settings-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    max-width: 1000px;
    margin: 0 auto;
}

.settings-header {
    text-align: center;
    margin-bottom: 40px;
}

.settings-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cookie-controls {
    margin-bottom: 40px;
}

.cookie-category {
    background: var(--background-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.category-info h3 {
    color: var(--primary-color);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-info p {
    color: var(--text-secondary);
    margin: 0;
}

.category-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.category-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 32px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-color);
}

input:checked + .slider:before {
    transform: translateX(28px);
}

input:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.settings-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
}

/* Cookie Table Styles */
.cookie-table-container {
    overflow-x: auto;
    margin: 25px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--background-light);
    color: var(--primary-color);
    font-weight: 700;
}

.cookie-table tr:hover {
    background: var(--background-light);
}

/* Cookie Category Details */
.cookie-category-detail {
    background: var(--background-light);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid var(--accent-color);
}

.cookie-category-detail h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-examples {
    margin-top: 20px;
}

.cookie-examples h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Third Party Services */
.third-party-services {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.service-item {
    background: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.service-item h4 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item p {
    margin: 5px 0;
    font-size: 0.95rem;
}

/* Browser Instructions */
.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.browser-item {
    background: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.browser-item h4 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.browser-item ol {
    padding-left: 20px;
}

.browser-item ol li {
    margin-bottom: 8px;
    padding-left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-card {
        flex-direction: column !important;
        text-align: center;
    }
    
    .feature-card:nth-child(even) {
        flex-direction: column !important;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .core-services .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .core-services .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-pricing .price {
        font-size: 1.3rem;
    }
    
    .highlight-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-icon {
        width: 150px;
        height: 100px;
    }
    
    .contact-form {
        padding: 20px;
    }
}


/* Legal Pages Mobile Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .table-of-contents {
        position: static;
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .legal-text h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .settings-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .settings-actions .btn-primary,
    .settings-actions .btn-secondary,
    .settings-actions .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cookie-table-container {
        font-size: 0.9rem;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
    
    .third-party-services {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .settings-card {
        padding: 25px;
    }
    
    .cookie-category {
        padding: 20px;
    }
}
