/* 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 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

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

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

a:hover {
    color: #2980b9;
}

/* Buttons */
.btn-primary {
    background-color: #3498db;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    padding: 12px 24px;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

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

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

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

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#accept-all {
    background-color: #27ae60;
    color: white;
}

#accept-all:hover {
    background-color: #219a52;
}

#necessary-only {
    background-color: #f39c12;
    color: white;
}

#necessary-only:hover {
    background-color: #e67e22;
}

#customize {
    background-color: #95a5a6;
    color: white;
}

#customize:hover {
    background-color: #7f8c8d;
}

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

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

.nav-logo h2 {
    color: #3498db;
    font-size: 1.8rem;
    margin: 0;
}

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

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.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;
}

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

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

/* Main Content */
main {
    padding-top: 70px;
}

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

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

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

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

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

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

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

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

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

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

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

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

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

.feature-icon img {
    width: 60px;
    height: 60px;
}

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

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

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

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

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

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

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

.service-card h3 {
    padding: 20px;
    margin-bottom: 10px;
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.service-card a {
    display: inline-block;
    margin: 0 20px 20px;
    color: #3498db;
    font-weight: 500;
}

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

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

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

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

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

.footer-section h3,
.footer-section h4 {
    color: #3498db;
    margin-bottom: 20px;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    color: #95a5a6;
}

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

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

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

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

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

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

.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-icon img {
    width: 50px;
    height: 50px;
}

.team {
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #555;
}

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

.stat-item h3 {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #555;
}

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

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

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

.cert-text ul {
    list-style: none;
}

.cert-text li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

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

/* Services Page Styles */
.service-section {
    padding: 80px 0;
}

.service-section.alt-bg {
    background-color: #f8f9fa;
}

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

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text h2 {
    margin-bottom: 20px;
}

.service-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3498db;
}

.service-text ul {
    margin-bottom: 30px;
}

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

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

.service-type {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.service-type h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-type p {
    color: #555;
    margin-bottom: 10px;
}

.service-type .price {
    font-weight: bold;
    color: #3498db;
    font-size: 1.1rem;
}

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

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

.additional-services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

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

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

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

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

.additional-card p {
    margin-bottom: 15px;
    color: #555;
}

.additional-card .price {
    font-weight: bold;
    color: #3498db;
    font-size: 1.1rem;
}

.process {
    padding: 80px 0;
}

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

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

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    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: #555;
}

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

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

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

.stats-inline {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 5px;
}

.stat span {
    font-size: 0.9rem;
    color: #555;
}

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

.testimonials-grid h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

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

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonial-content .stars {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-content p {
    margin-bottom: 20px;
    font-style: italic;
    color: white;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.testimonial-card.featured .testimonial-author span {
    color: rgba(255,255,255,0.8);
}

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

.testimonials-video h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

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

.story-card h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-card p {
    margin-bottom: 15px;
    color: #555;
}

.story-card strong {
    color: #3498db;
}

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

.review-platforms h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

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

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

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating .stars {
    font-size: 1.2rem;
}

.rating span {
    color: #555;
    font-size: 0.9rem;
}

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

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

.blog-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

.blog-articles h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.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 {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 25px;
}

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

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

.article-meta .date {
    color: #777;
}

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

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

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.read-time {
    font-size: 0.9rem;
    color: #777;
}

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

.blog-categories {
    padding: 80px 0;
}

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

.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);
    transition: transform 0.3s ease;
}

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

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

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

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

.category-card p {
    margin-bottom: 15px;
    color: #555;
}

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

.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

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

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

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

.newsletter-form button {
    padding: 12px 24px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #219a52;
}

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

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

.blog-tips h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.tip-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    gap: 30px;
    align-items: center;
}

.tip-icon img {
    width: 60px;
    height: 60px;
}

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

.tip-content p {
    color: #555;
    line-height: 1.6;
}

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

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

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

.contact-info p {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

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

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

.method-icon {
    font-size: 2rem;
    width: 60px;
    flex-shrink: 0;
}

.method-info h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.method-info p {
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.method-info span {
    display: block;
    color: #777;
    font-size: 0.9rem;
}

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

.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    margin-bottom: 15px;
}

.form-header p {
    color: #555;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    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 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 2px;
}

.checkbox-group label {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.emergency-contact {
    padding: 80px 0;
}

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

.emergency-card h2 {
    color: white;
    margin-bottom: 15px;
}

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

.emergency-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.emergency-phone,
.emergency-email {
    text-align: center;
}

.emergency-phone strong,
.emergency-email strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.emergency-phone span,
.emergency-email span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

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

.service-areas h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.service-areas > p {
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    font-size: 1.1rem;
}

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

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

.area-group h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    margin-bottom: 8px;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.area-group li::before {
    content: '•';
    color: #3498db;
    position: absolute;
    left: 0;
}

.areas-note {
    text-align: center;
    font-style: italic;
    color: #777;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    color: white;
}

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

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

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

.thanks-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.next-steps {
    padding: 80px 0;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

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

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

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

.step-card p {
    margin-bottom: 15px;
    color: #555;
}

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

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

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

.contact-reminder h2 {
    margin-bottom: 20px;
}

.contact-reminder p {
    margin-bottom: 30px;
    color: #555;
    font-size: 1.1rem;
}

.contact-methods-simple {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 1.1rem;
    color: #333;
}

.contact-item strong {
    color: #3498db;
}

.while-you-wait {
    padding: 80px 0;
}

.while-you-wait h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

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

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

.suggestion-icon img {
    width: 60px;
    height: 60px;
}

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

.suggestion-card p {
    margin-bottom: 20px;
    color: #555;
}

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

.emergency-reminder .emergency-card {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.emergency-contact {
    margin-top: 20px;
}

.emergency-contact .btn-primary {
    background-color: #e74c3c;
    padding: 15px 30px;
    font-size: 1.1rem;
}

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

/* Blog Article Styles */
.blog-article {
    padding: 80px 0;
}

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

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #777;
}

.breadcrumb a {
    color: #3498db;
}

.article-header .article-meta {
    margin-bottom: 30px;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.article-lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
}

.blog-article .article-image {
    max-width: 800px;
    margin: 0 auto 50px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article .article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.blog-article .article-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.blog-article .article-content p {
    margin-bottom: 20px;
    color: #555;
}

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

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

/* Recipe Cards */
.recipe-card {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.recipe-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.recipe-content h4 {
    color: #3498db;
    margin-top: 20px;
    margin-bottom: 10px;
}

.recipe-content ul,
.recipe-content ol {
    margin-bottom: 20px;
}

/* Ingredients List */
.ingredients-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.ingredient-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.ingredient-item p {
    color: #555;
    font-size: 0.9rem;
}

/* Cost Comparison */
.cost-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.comparison-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

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

.comparison-item p {
    color: #555;
    font-size: 0.9rem;
}

/* Error Cards */
.error-card {
    background: white;
    border: 1px solid #e74c3c;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.error-card h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

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

.pro-tip {
    background: #27ae60;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.warning-box {
    background: #f39c12;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.safety-tips {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.tool-guide,
.timing-guide {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

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

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

.consequence-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.checklist {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

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

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

.checklist-items li {
    margin-bottom: 10px;
    color: #555;
}

/* Statistics and Professional Content */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

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

.stat-card p {
    color: #555;
    font-size: 0.9rem;
}

.psychology-section {
    background: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

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

.health-category {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.health-category h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.strategy-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.weekly-schedule {
    background: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

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

.point-category {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.point-category h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.principle {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.principle h4 {
    color: #3498db;
    margin-bottom: 15px;
}

.tech-solutions {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.roi-analysis {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.roi-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.cost-section,
.benefit-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.roi-result {
    background: #27ae60;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.case-study {
    background: white;
    border-left: 4px solid #3498db;
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.case-study p {
    margin-bottom: 15px;
}

.case-study strong {
    color: #3498db;
}

/* Article Footer */
.article-footer {
    max-width: 800px;
    margin: 50px auto 0;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

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

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

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

.author-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.author-info p {
    color: #555;
    margin-bottom: 0;
}

.article-conclusion {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.article-conclusion h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.article-conclusion p {
    color: #555;
    line-height: 1.8;
}

.related-articles {
    margin-top: 50px;
}

.related-articles h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

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

.related-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

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

.related-card p {
    color: #555;
    margin-bottom: 0;
}

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

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

.legal-text h2 {
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.legal-text p {
    margin-bottom: 20px;
    color: #555;
}

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

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

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

/* Cookie Tables */
.cookie-table {
    margin: 30px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.cookie-table tr:last-child td {
    border-bottom: none;
}

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

.cookie-settings-reminder {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.cookie-settings-reminder h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.cookie-settings-reminder p {
    color: #555;
    margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

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

    .hamburger {
        display: flex;
    }

    .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-content,
    .about-grid,
    .service-content,
    .testimonials-content,
    .blog-hero-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-content.reverse {
        direction: ltr;
    }

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

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

    .features h2,
    .services-preview h2 {
        font-size: 2rem;
    }

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

    .stats-inline {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .contact-methods-simple {
        flex-direction: column;
        gap: 20px;
    }

    .emergency-info {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .testimonial-card.featured {
        grid-column: span 1;
    }

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

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

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

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

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .legal-text {
        padding: 0 15px;
    }
}

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

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

    .features-grid,
    .services-grid,
    .testimonials-layout,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cta,
    .newsletter,
    .emergency-contact,
    .article-cta {
        display: none;
    }

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

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

    .page-header {
        background: none;
        color: #333;
        padding: 20px 0;
    }

    .hero {
        background: none;
        padding: 20px 0;
    }
}
