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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    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;
}

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

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

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

.btn-primary:hover {
    background-color: #c0392b;
    color: white;
}

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

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

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

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

.btn-full {
    width: 100%;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

.cookie-content p{
    color:white;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.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: sticky;
    top: 0;
    z-index: 100;
}

.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;
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-logo:hover {
    color: #2c3e50;
}

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

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

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e74c3c;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #555;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.last-updated {
    font-size: 1rem !important;
    opacity: 0.8;
    margin-top: 10px;
}

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

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

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

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

.feature-icon {
    margin-bottom: 20px;
}

.feature-svg {
    width: 80px;
    height: 80px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

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

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

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

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

.about-text h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

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

.about-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

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

.values h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-icon {
    margin-bottom: 20px;
}

.value-svg {
    width: 60px;
    height: 60px;
}

.team {
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat h3 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 10px;
}

.stat p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
}

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

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

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

.service-card.featured {
    border: 3px solid #e74c3c;
    transform: scale(1.02);
}

.service-icon {
    margin-bottom: 20px;
}

.service-svg {
    width: 70px;
    height: 70px;
}

.service-features {
    margin-top: 20px;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 8px;
    color: #555;
}

.course-features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.feature-list {
    margin-top: 30px;
}

.feature-item {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

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

.features-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.process {
    padding: 80px 0;
}

.process h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.step {
    text-align: center;
    padding: 30px 20px;
}

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

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

.step p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Page Styles */
.testimonials-hero {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.testimonials-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.testimonials-featured {
    padding: 80px 0;
}

.testimonials-featured h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

.testimonial-card.featured {
    border: 3px solid #e74c3c;
    grid-column: span 2;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    flex-grow: 1;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

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

.testimonials-list {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-list h2 {
    text-align: center;
    margin-bottom: 50px;
}

/* Blog Page Styles */
.blog-hero {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.featured-articles {
    padding: 80px 0;
}

.featured-articles h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.article-card.featured {
    grid-column: span 2;
}

.article-image {
    background-color: #f8f9fa;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-svg {
    width: 80px;
    height: 80px;
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.article-date {
    color: #e74c3c;
}

.article-category {
    background-color: #ecf0f1;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.article-content h3 {
    margin-bottom: 15px;
}

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

.article-content h3 a:hover {
    color: #e74c3c;
}

.article-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.read-more:hover {
    color: #c0392b;
}

.blog-categories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-categories h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.category-svg {
    width: 60px;
    height: 60px;
}

.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 20px;
}

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

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

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

.newsletter-form button {
    white-space: nowrap;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

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

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

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

.contact-icon {
    width: 24px;
    height: 24px;
    color: #e74c3c;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-text h4 {
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-text p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}

.form-container h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container p {
    margin-bottom: 30px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

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

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
}

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

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

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Thanks Page Styles */
.thanks-content {
    padding: 80px 0;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-message h1 {
    color: #27ae60;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.thanks-details {
    margin: 50px 0;
    text-align: left;
}

.thanks-details h2 {
    text-align: center;
    margin-bottom: 40px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.step-content h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.thanks-contact {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.thanks-contact h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e74c3c;
    margin: 10px 0;
}

.email {
    color: #666;
}

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

.thanks-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 40px;
}

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

.additional-resources h2 {
    text-align: center;
    margin-bottom: 20px;
}

.additional-resources p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

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

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.resource-icon {
    margin-bottom: 20px;
}

.resource-svg {
    width: 60px;
    height: 60px;
}

.resource-link {
    color: #e74c3c;
    font-weight: 500;
    text-decoration: none;
}

.resource-link:hover {
    color: #c0392b;
}

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

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

.legal-document h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

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

.legal-document h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-document ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-document li {
    margin-bottom: 8px;
    color: #555;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

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

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

.browser-instructions {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.browser-instructions p {
    margin-bottom: 8px;
    font-family: monospace;
    font-size: 0.9rem;
}

.browser-instructions p:last-child {
    margin-bottom: 0;
}

/* Blog Article Styles */
.blog-article {
    max-width: 1200px;
    margin: 0 auto;
}

.article-header {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    padding: 80px 0 60px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.back-to-blog {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
}

.back-to-blog:hover {
    color: white;
}

.article-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.article-date, .read-time {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.article-category {
    background-color: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
}

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.article-header .article-image {
    background: none;
    padding: 0;
    margin-top: 40px;
}

.article-hero-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

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

.article-body .lead {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
}

.article-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.8rem;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-size: 1.4rem;
}

.article-body h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 1.2rem;
}

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

.article-body li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.article-body li strong {
    color: #2c3e50;
}

.article-body .checklist {
    list-style: none;
    padding-left: 0;
}

.article-body .checklist li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.article-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 15px;
}

.article-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.author-info,
.related-articles,
.share-article {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.author-info h4,
.related-articles h4,
.share-article h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.related-articles li {
    margin-bottom: 10px;
}

.related-articles a {
    color: #e74c3c;
    text-decoration: none;
    line-height: 1.5;
}

.related-articles a:hover {
    color: #c0392b;
}

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

.share-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background-color: #2980b9;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

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

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

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

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

.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-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    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) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid #f8f9fa;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .article-card.featured {
        grid-column: span 1;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
    
    .article-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content p {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .services-grid,
    .testimonials-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero, .page-header {
        padding: 60px 0;
    }
    
    .features, .services-overview, .testimonials-featured, .featured-articles, .contact-content, .about-content {
        padding: 60px 0;
    }
}
