/* 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: #fff;
}

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

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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

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

a:hover {
    color: #2980b9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    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-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

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

.cookie-banner.show {
    transform: translateY(0);
}
.cookie-content p{
    color: white;
}
.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.logo {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

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

.nav-menu a {
    color: #555;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    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: #666;
}

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

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

.hero-svg {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.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: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

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

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-align: center;
}

.header-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.header-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.page-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

/* Content Sections */
.about-content,
.course-info,
.team,
.services-overview,
.course-features,
.learning-modules,
.pricing,
.testimonials,
.stats,
.success-stories,
.blog-articles,
.blog-categories,
.contact,
.quick-services,
.location {
    padding: 80px 0;
}

.content-grid,
.course-grid,
.team-grid,
.services-grid,
.features-grid,
.stats-grid,
.stories-grid,
.articles-grid,
.categories-grid,
.contact-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

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

.content-text h2,
.content-text h3 {
    margin-bottom: 1.5rem;
}

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

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Services */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

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

.service-card.featured {
    border-color: #3498db;
    transform: scale(1.02);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

.service-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-card li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db;
    margin-top: 1.5rem;
}

/* Learning Modules */
.modules-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.module-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.module-item:hover {
    background-color: #e9ecef;
}

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

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

.module-duration {
    color: #3498db;
    font-weight: 500;
    margin-top: 10px;
}

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

.pricing-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3498db;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.price-amount span {
    font-size: 1rem;
    color: #666;
}

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

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.pricing-card li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card.featured {
    border: 2px solid #3498db;
}

.rating {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555;
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 20px;
}

.testimonial-author strong {
    color: #2c3e50;
    display: block;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Stats */
.stats {
    background-color: #f8f9fa;
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Blog */
.featured-article {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.article-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.article-card.featured {
    border: 2px solid #3498db;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category {
    background-color: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.date,
.read-time {
    color: #666;
    font-size: 0.9rem;
}

.article-card h2,
.article-card h3 {
    margin-bottom: 1rem;
}

.article-card h2 a,
.article-card h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.article-card h2 a:hover,
.article-card h3 a:hover {
    color: #3498db;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.author {
    color: #666;
    font-size: 0.9rem;
}

.read-more {
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.article-image {
    text-align: center;
    margin-bottom: 20px;
}

.article-icon {
    width: 60px;
    height: 60px;
}

/* Blog Categories */
.categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.category-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.article-count {
    color: #3498db;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 15px;
    display: block;
}

/* Newsletter */
.newsletter {
    background-color: #2c3e50;
    color: white;
    padding: 80px 0;
    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 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-privacy {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.newsletter-privacy a {
    color: rgba(255,255,255,0.9);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: #3498db;
    flex-shrink: 0;
}

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

.contact-item p {
    color: #666;
    margin-bottom: 0;
}

.contact-item small {
    color: #999;
    font-size: 0.9rem;
}

.office-hours {
    margin-top: 40px;
}

.office-hours ul {
    list-style: none;
}

.office-hours li {
    padding: 5px 0;
    color: #666;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

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

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

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

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

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

/* Quick Services */
.services-grid.quick-services {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-quick {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Location */
.map-container {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 60px;
    text-align: center;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.map-icon {
    width: 80px;
    height: 80px;
    color: #3498db;
}

/* Article Pages */
.article-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 120px 0 60px;
}
.article-header h1{
    color: white;
}
.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
}

.article-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    filter: brightness(0) invert(1);
}

.author-info strong {
    display: block;
    color: white;
}

.author-info span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Article Content */
.article-content {
    padding: 80px 0;
}

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

.featured-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 40px;
    display: block;
}

.article-text h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.article-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.article-text ul,
.article-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-text li {
    margin-bottom: 8px;
    color: #555;
}

/* Info Boxes */
.info-box,
.warning-box,
.tip-box,
.cta-box,
.solution-box {
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    border-left: 5px solid;
}

.info-box {
    background-color: #e8f4f8;
    border-color: #3498db;
}

.warning-box {
    background-color: #fef2e8;
    border-color: #f39c12;
}

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

.cta-box {
    background-color: #f8f4ff;
    border-color: #9b59b6;
    text-align: center;
}

.solution-box {
    background-color: #f0f8e8;
    border-color: #27ae60;
}

.info-box h4,
.warning-box h4,
.tip-box h4,
.cta-box h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Tables */
.deadline-table,
.comparison-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.deadline-table th,
.comparison-table th,
.cookie-table th,
.deadline-table td,
.comparison-table td,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

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

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

/* Calculation Boxes */
.calculation-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 2px solid #e9ecef;
}

.calculation-box h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.calculation-box p {
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #3498db;
}

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

.timeline-date {
    background-color: #3498db;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-right: 30px;
    flex-shrink: 0;
}

.timeline-content {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

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

/* Checklist */
.checklist {
    list-style: none;
    margin: 20px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.checklist-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #27ae60;
}

.checklist-item label {
    color: #555;
    cursor: pointer;
}

/* Software Reviews */
.software-review {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.software-review .rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
}

.score {
    background-color: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.pricing-info {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.best-for {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #ffc107;
    font-weight: 500;
}

/* Recommendations */
.recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.recommendation-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.recommendation-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Error Cards for Blog Post */
.error-list {
    margin: 40px 0;
}

.error-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #e74c3c;
}

.error-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.error-content h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.error-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Prevention System */
.prevention-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.prevention-step {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

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

.step-content h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-content ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.step-content li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.step-content li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tool-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.tool-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.tool-card ul {
    list-style: none;
    padding: 0;
}

.tool-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.tool-card li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* When to Call */
.when-to-call {
    background-color: #fff3cd;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #ffc107;
}

.when-to-call h3 {
    color: #856404;
    margin-bottom: 15px;
}

.when-to-call ul {
    list-style: none;
    padding: 0;
}

.when-to-call li {
    padding: 8px 0;
    color: #856404;
    position: relative;
    padding-left: 25px;
}

.when-to-call li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Article Sidebar */
.article-sidebar {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.share-buttons,
.related-articles,
.newsletter-signup,
.download-box,
.error-checklist,
.quick-links {
    margin-bottom: 40px;
}

.share-buttons h4,
.related-articles h4,
.newsletter-signup h4,
.download-box h4,
.error-checklist h4,
.quick-links h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.social-share {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background-color: #4267B2;
    color: white;
}

.share-btn.linkedin {
    background-color: #0e76a8;
    color: white;
}

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

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.related-item {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

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

.related-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.related-item a:hover {
    color: #3498db;
}

.related-date {
    color: #666;
    font-size: 0.9rem;
}

.newsletter-form input {
    width: 100%;
    margin-bottom: 15px;
}

.download-box,
.error-checklist {
    background-color: #e8f4f8;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.error-checklist {
    background-color: #f0f8e8;
    text-align: left;
}

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

.error-checklist li {
    padding: 5px 0;
    color: #27ae60;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    padding: 8px 0;
}

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

.quick-links a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

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

/* Thank You Page */
.thank-you {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    color: #27ae60;
}

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

.next-steps {
    margin: 60px 0;
}

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

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

.contact-urgency {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.urgent-contact {
    margin: 20px 0;
}

.urgent-hours {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

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

.additional-resources {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.resource-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.resource-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #3498db;
}

.newsletter-signup {
    background-color: #2c3e50;
    color: white;
    padding: 80px 0;
}

.newsletter-signup .newsletter-content h2 {
    color: white;
}

.newsletter-signup .newsletter-content p {
    color: rgba(255,255,255,0.9);
}

.newsletter-note {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 15px;
}

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

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

.legal-header h1 {
    margin-bottom: 1rem;
}

.last-updated {
    color: #666;
    font-style: italic;
}

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

.legal-text h2 {
    margin-top: 50px;
    margin-bottom: 25px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.legal-text h3 {
    margin-top: 35px;
    margin-bottom: 20px;
    color: #34495e;
}

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

.legal-text li {
    margin-bottom: 10px;
    color: #555;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

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

/* Footer */
.footer {
    background-color: #2c3e50;
    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-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

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

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

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

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .features-grid,
    .services-grid,
    .testimonials-grid,
    .stats-grid,
    .articles-grid,
    .categories-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .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-buttons,
    .cookie-buttons,
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: 100%;
        margin-bottom: 15px;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .prevention-system,
    .tools-grid,
    .recommendations,
    .steps-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline:before {
        left: 15px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
    }
    
    .timeline-date {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .service-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-share {
        flex-direction: column;
    }
    
    .share-btn {
        text-align: center;
    }
}

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .footer,
    .btn,
    .share-buttons,
    .newsletter {
        display: none;
    }
    
    .article-content {
        padding: 0;
    }
    
    .article-sidebar {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    p, li {
        orphans: 3;
        widows: 3;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}
