<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

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

a:hover {
    color: #2980b9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    color: white;
}

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

.btn-outline:hover {
    background-color: #3498db;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Header and Navigation */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav-link {
    color: #555;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3498db;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    z-index: 999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

.cookie-option {
    margin: 1rem 0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 0;
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Services Section */
.services-preview {
    padding: 4rem 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

/* Blog Section */
.blog-preview {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.blog-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #3498db;
}

.blog-date {
    color: #888;
    font-size: 0.9rem;
}

/* Subscription Section */
.subscription {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.subscription h2 {
    color: white;
    margin-bottom: 1rem;
}

.subscription p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem 0;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* About Content */
.about-content {
    padding: 4rem 0;
}

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

.about-text {
    line-height: 1.8;
}

.values-list {
    list-style: none;
    margin-left: 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.values-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.about-image img {
    width: 100%;
    max-width: 300px;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-member {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.member-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

/* Stats Section */
.company-stats,
.success-stats {
    padding: 4rem 0;
    background-color: #2c3e50;
    color: white;
}

.company-stats h2,
.success-stats h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

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

.stat-item,
.stat-card {
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.stat-item h3,
.stat-card h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-card .stat-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-item {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
}

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

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

.service-text ul {
    list-style: none;
    margin-left: 0;
}

.service-text li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-text li::before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.pricing-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Populair';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3498db;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
}

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

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-icon img {
    width: 50px;
    height: 50px;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

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

/* Video Testimonials */
.video-testimonials {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.video-testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.video-testimonial {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.video-placeholder {
    position: relative;
    height: 200px;
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder img {
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

.play-button {
    position: absolute;
    font-size: 3rem;
    color: #3498db;
    cursor: pointer;
}

.video-testimonial h3 {
    padding: 1rem 1.5rem 0.5rem;
}

.video-testimonial p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Blog Styles */
.blog-featured {
    padding: 4rem 0;
}

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

.featured-image img {
    width: 100%;
    border-radius: 8px;
}

.featured-tag {
    background-color: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.blog-articles {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.blog-category {
    background-color: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #888;
}

/* Categories */
.blog-categories {
    padding: 4rem 0;
}

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

.category-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.article-count {
    color: #3498db;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 4rem 0;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

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

.newsletter-form input {
    flex: 1;
    border-radius: 6px 0 0 6px;
}

.newsletter-form .btn {
    border-radius: 0 6px 6px 0;
    white-space: nowrap;
}

/* Contact Styles */
.contact-section {
    padding: 4rem 0;
}

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

.contact-info {
    padding-right: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon img {
    width: 50px;
    height: 50px;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.contact-details span {
    color: #888;
    font-size: 0.9rem;
}

.social-contact {
    margin-top: 3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    padding: 0.5rem 1rem;
    background-color: #ecf0f1;
    border-radius: 6px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #3498db;
    color: white;
}

/* Contact Form */
.contact-form-section h2 {
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    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: #3498db;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Office Hours */
.office-hours {
    padding: 4rem 0;
}

.office-hours h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.hours-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.hours-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-icon img {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
}

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

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-icon img {
    width: 50px;
    height: 50px;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.immediate-actions {
    margin: 4rem 0;
}

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

.action-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.action-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.contact-support,
.social-follow {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.support-item {
    padding: 1rem;
    background-color: white;
    border-radius: 6px;
    text-align: center;
}

.social-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    background-color: #3498db;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-2px);
}

.return-home {
    margin-top: 3rem;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
}

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

.legal-text h2 {
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.legal-text h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text h3 {
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text strong {
    color: #2c3e50;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background-color: #f8f9fa;
}

.cookie-settings-button {
    text-align: center;
    margin: 2rem 0;
}

/* Article Styles */
.blog-article {
    padding: 2rem 0;
}

.article-header {
    margin-bottom: 3rem;
}

.breadcrumbs {
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #3498db;
    text-decoration: none;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-header .article-meta {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.meta-item img {
    width: 20px;
    height: 20px;
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-content {
    max-width: 800px;
    line-height: 1.8;
}

.article-intro .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* Article Content Elements */
.current-rates-box,
.current-rates-highlight,
.security-alert {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.current-rates-box h3,
.current-rates-highlight h3,
.security-alert h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.rates-grid,
.rates-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.rate-item,
.rate-card {
    background-color: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.rate-card.best {
    background-color: rgba(39, 174, 96, 0.2);
    border: 2px solid #27ae60;
}

.rate-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rate-value,
.rate {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.highlight-box,
.strategy-benefits,
.tips-box,
.warning-box,
.tip-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.warning-box {
    background-color: #fdf2e9;
    border-left-color: #e67e22;
}

.tip-box {
    background-color: #eafaf1;
    border-left-color: #27ae60;
}

.example-box {
    background-color: #e8f4fd;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    border-left: 4px solid #3498db;
}

/* Tables */
.comparison-table,
.cost-comparison {
    margin: 2rem 0;
}

.comparison-table table,
.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td,
.cost-table th,
.cost-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table th,
.cost-table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
}

.comparison-table tr:hover,
.cost-table tr:hover {
    background-color: #f8f9fa;
}

/* Provider Cards */
.mortgage-providers,
.special-offers {
    margin: 2rem 0;
}

.provider-card,
.offer-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.provider-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.provider-card ul,
.offer-item ul {
    list-style: none;
    margin-left: 0;
}

.provider-card li,
.offer-item li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.provider-card li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Mortgage Types */
.mortgage-types {
    margin: 2rem 0;
}

.type-comparison {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.pros,
.cons {
    padding: 1rem;
    border-radius: 6px;
}

.pros {
    background-color: #eafaf1;
}

.cons {
    background-color: #fdf2e9;
}

.pros h4 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.cons h4 {
    color: #e67e22;
    margin-bottom: 1rem;
}

/* Tips and Steps */
.mortgage-tips,
.savings-tips {
    margin: 2rem 0;
}

.tip {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.tip-number {
    background-color: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-by-step {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

/* Best Banks */
.best-banks {
    margin: 2rem 0;
}

.bank-category {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bank-category h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Action Plan */
.action-plan {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.action-plan h3 {
    color: #3498db;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.action-plan h3:first-of-type {
    margin-top: 0;
}

/* Results Summary */
.results-summary {
    background-color: #eafaf1;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.results-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.result-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
}

.improvement {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Article Sidebar */
.blog-article .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.related-articles {
    list-style: none;
    margin-left: 0;
}

.related-articles li {
    margin-bottom: 0.5rem;
}

.related-articles a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
}

.related-articles a:hover {
    text-decoration: underline;
}

.social-share {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background-color: #3b5998;
    color: white;
}

.share-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background-color: #0077b5;
    color: white;
}

.share-btn.email {
    background-color: #34495e;
    color: white;
}

.share-btn:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

/* Newsletter Signup in Sidebar */
.sidebar-section.newsletter-signup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.sidebar-section.newsletter-signup h3 {
    color: white;
}

.sidebar-section.newsletter-signup p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.sidebar-section.newsletter-signup input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Calculator Widgets */
.calculator-widget,
.savings-calculator {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calc-inputs input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.calc-inputs button {
    padding: 0.75rem;
    font-size: 0.9rem;
}

.calc-result {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #eafaf1;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
}

/* Top Rates */
.top-rates {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.rate-item:last-child {
    border-bottom: none;
}

.rate-item .bank {
    font-weight: 500;
}

.rate-item .rate {
    color: #27ae60;
    font-weight: bold;
}

/* Download Tools */
.download-tools {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-download {
    display: block;
    padding: 1rem;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tool-download:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

.tool-download strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.tool-download span {
    color: #666;
    font-size: 0.8rem;
}

/* Download Box */
.download-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    text-align: center;
}

.download-box h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.download-box p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

/* Article Conclusion */
.article-conclusion {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

/* Table of Contents */
.table-of-contents {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.table-of-contents h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.95rem;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

/* Security Article Specific Styles */
.safety-checklist,
.anti-phishing-rules {
    background-color: #eafaf1;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
    margin: 1.5rem 0;
}

.safety-checklist h3,
.anti-phishing-rules h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.password-requirements {
    margin: 2rem 0;
}

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

.requirement {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.requirement h4 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

.password-examples {
    margin: 1.5rem 0;
}

.password-example {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.password-example.good {
    background-color: #eafaf1;
}

.password-example.bad {
    background-color: #fdf2e9;
}

.password-example .label {
    font-weight: bold;
    min-width: 60px;
}

.password-example .password {
    font-family: monospace;
    background-color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.password-example .explanation {
    color: #666;
    font-size: 0.9rem;
}

.two-factor-types {
    margin: 2rem 0;
}

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

.auth-method {
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.auth-method.best {
    border-color: #27ae60;
    background-color: #eafaf1;
}

.auth-method.good {
    border-color: #f39c12;
    background-color: #fef9e7;
}

.auth-method.excellent {
    border-color: #3498db;
    background-color: #e8f4fd;
}

.setup-guide {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.setup-guide h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.setup-guide ol {
    padding-left: 1.5rem;
}

.setup-guide li {
    margin-bottom: 0.5rem;
}

/* Phishing Examples */
.phishing-examples {
    margin: 2rem 0;
}

.phishing-tactic {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.example-bad {
    background-color: #fdf2e9;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    border-left: 4px solid #e67e22;
}

.red-flags {
    margin-top: 1rem;
}

.red-flags h5 {
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

/* Device Security */
.device-security {
    margin: 2rem 0;
}

.device-type {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.device-type h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.security-software {
    margin: 2rem 0;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.software-option {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.software-option h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Connection Safety */
.connection-safety {
    margin: 2rem 0;
}

.safe-connections,
.unsafe-connections {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.safe-connections {
    border-left: 4px solid #27ae60;
}

.unsafe-connections {
    border-left: 4px solid #e74c3c;
}

.safe-connections h3 {
    color: #27ae60;
}

.unsafe-connections h3 {
    color: #e74c3c;
}

.public-wifi-rules {
    margin: 2rem 0;
}

.wifi-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.rule-item {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
}

.rule-item h4 {
    color: #3498db;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Monitoring */
.monitoring-schedule {
    margin: 2rem 0;
}

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

.schedule-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.schedule-item h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.suspicious-activity {
    background-color: #fdf2e9;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #e67e22;
    margin: 1.5rem 0;
}

.suspicious-activity h3 {
    color: #e67e22;
}

.alert-setup {
    background-color: #e8f4fd;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    margin: 1.5rem 0;
}

.alert-setup h3 {
    color: #3498db;
}

/* Logout Practices */
.logout-best-practices {
    margin: 2rem 0;
}

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

.practice-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.practice-item h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.session-security {
    background-color: #e8f4fd;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    margin: 1.5rem 0;
}

/* Update Priorities */
.update-priorities {
    margin: 2rem 0;
}

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

.priority-item {
    padding: 1.5rem;
    border-radius: 8px;
}

.priority-item.high {
    background-color: #fdf2e9;
    border: 2px solid #e74c3c;
}

.priority-item.medium {
    background-color: #fef9e7;
    border: 2px solid #f39c12;
}

.priority-item h4 {
    margin-bottom: 1rem;
}

.auto-update-settings {
    margin: 2rem 0;
}

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

.setting-item {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
}

.setting-item h4 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

.setting-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Emergency Steps */
.emergency-steps {
    margin: 2rem 0;
}

.emergency-timeline {
    margin-top: 1rem;
}

.step.immediate,
.step.urgent,
.step.followup {
    border-left: 4px solid #e74c3c;
}

.step.urgent {
    border-left-color: #f39c12;
}

.step.followup {
    border-left-color: #3498db;
}

.bank-contact {
    margin: 2rem 0;
}

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

.bank-contact-item {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.bank-contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.documentation {
    background-color: #e8f4fd;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    margin: 1.5rem 0;
}

/* Security Checklist */
.security-checklist {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.checklist-category {
    background-color: white;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.checklist-category h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.checklist-category ul {
    list-style: none;
    margin-left: 0;
}

.checklist-category li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Security Quiz */
.security-quiz {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.quiz-questions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.quiz-questions label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.quiz-questions input[type="checkbox"] {
    transform: scale(1.1);
}

.score-result {
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.score-result.excellent {
    background-color: #eafaf1;
    color: #27ae60;
}

.score-result.good {
    background-color: #fef9e7;
    color: #f39c12;
}

.score-result.needs-attention {
    background-color: #fdf2e9;
    color: #e67e22;
}

/* Emergency Contacts */
.emergency-contacts {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.contact-item {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #bdc3c7;
    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 #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .subscription-form {
        gap: 1rem;
    }

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

    .newsletter-form input {
        border-radius: 6px;
        margin-bottom: 1rem;
    }

    .newsletter-form .btn {
        border-radius: 6px;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-article .container {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 600px;
    }

    .requirements-grid,
    .auth-methods,
    .software-grid,
    .wifi-rules,
    .schedule-grid,
    .practice-grid,
    .priority-list,
    .auto-settings,
    .contact-grid,
    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .password-example {
        flex-direction: column;
        align-items: start;
        gap: 0.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

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

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

    .rates-grid,
    .rates-comparison {
        grid-template-columns: 1fr;
    }

    .results-examples {
        grid-template-columns: 1fr;
    }

    .tip {
        flex-direction: column;
        text-align: center;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .article-sidebar,
    .cta-box,
    .social-share,
    .newsletter-signup {
        display: none !important;
    }

    main {
        margin-top: 0;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .article-content {
        max-width: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    .blog-article .container {
        grid-template-columns: 1fr;
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background-color: #000;
        border: 2px solid #000;
    }

    .btn-outline {
        border-width: 3px;
    }

    .feature-card,
    .service-card,
    .blog-card {
        border: 2px solid #000;
    }
}

/* Focus styles for better accessibility */
button:focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 3px solid #3498db;
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #3498db;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1002;
}

.skip-to-content:focus {
    top: 6px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
</pre></body></html>