/* General Styles */
:root {
    --primary-color: #0d47a1;
    --secondary-color: #1976d2;
    --accent-color: #42a5f5;
    --text-color: #333333;
    --light-text: #ffffff;
    --background-color: #ffffff;
    --light-bg: #f5f7fa;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--light-bg);
}

/* Header */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

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

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    padding: 80px 0;
    background-color: var(--light-bg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Section Styles */
section {
    padding: 60px 0;
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: var(--background-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
}

.feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 8px;
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
}

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

.service-card {
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
    text-align: center;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Comparison Section */
.comparison-section {
    background-color: var(--background-color);
}

.comparison-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.comparison-chart {
    flex: 1;
    min-width: 300px;
}

.comparison-table {
    flex: 1;
    min-width: 300px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.comparison-table th {
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table tr:hover {
    background-color: var(--light-bg);
}

.comparison-table i {
    color: #ffc107;
}

.comparison-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
}

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

/* Equipment Section */
.equipment-section {
    background-color: var(--light-bg);
}

.equipment-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.equipment-image {
    flex: 1;
}

.equipment-info {
    flex: 1;
}

.equipment-item {
    margin-bottom: 25px;
}

.equipment-item h3 {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.equipment-item h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.equipment-cta {
    text-align: center;
    margin-top: 30px;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--background-color);
}

.reviews-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.review-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 25px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 3px 10px var(--shadow-color);
}

.review-rating {
    margin-bottom: 15px;
    color: #ffc107;
}

.review-content {
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
}

.author-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.author-info h4 {
    margin-bottom: 5px;
}

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

/* Page Title */
.page-title {
    background-color: var(--light-bg);
    padding: 40px 0;
}

.page-title h1 {
    margin-bottom: 10px;
}

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

.breadcrumbs a {
    color: #666;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

/* Contact Page */
.contact-section {
    background-color: var(--background-color);
}

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

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

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p {
    margin-bottom: 5px;
}

.social-connect h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.contact-form-container {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.form-header {
    margin-bottom: 25px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check input {
    margin-top: 5px;
    margin-right: 10px;
    flex-shrink: 0;
    width: auto;
}

.form-submit {
    margin-top: 20px;
}

/* Map Section */
.map-section {
    background-color: var(--light-bg);
}

.map-container {
    margin-bottom: 20px;
}

.map-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    background-color: var(--background-color);
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    background-color: var(--light-bg);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-toggle .fa-plus:before {
    content: "\f068";
}

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

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

.thank-you-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.what-next {
    margin: 30px 0;
    text-align: left;
}

.what-next ul {
    list-style: none;
}

.what-next li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.what-next li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.thank-you-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Featured Articles */
.featured-articles {
    background-color: var(--light-bg);
    padding: 60px 0;
}

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

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

.featured-card {
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow-color);
}

.featured-image {
    height: 200px;
}

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

.featured-content {
    padding: 20px;
}

.featured-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.featured-content p {
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Newsletter Page */
.newsletter-page-section {
    background-color: var(--background-color);
}

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

.newsletter-benefits {
    margin: 30px 0;
}

.newsletter-benefits li {
    display: flex;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.newsletter-sample {
    margin-bottom: 30px;
}

.newsletter-preview {
    margin-top: 15px;
}

.testimonial {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px var(--shadow-color);
}

.testimonial-quote {
    position: relative;
    padding: 10px 20px;
    font-style: italic;
}

.testimonial-quote i:first-child {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-quote i:last-child {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--primary-color);
    opacity: 0.2;
}

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

.author-image {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.signup-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.privacy-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666;
}

/* Legal Pages */
.privacy-policy-section,
.terms-section,
.cookie-policy-section {
    background-color: var(--background-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    margin-bottom: 20px;
    color: #666;
    font-style: italic;
}

.legal-introduction {
    margin-bottom: 30px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.legal-section ul li {
    margin-bottom: 10px;
    position: relative;
}

.legal-section ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.legal-section address {
    margin-top: 10px;
    font-style: normal;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

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

.cookies-table th {
    background-color: var(--light-bg);
    font-weight: 600;
}

/* Blog Preview Section */
.blog-preview-section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    height: 160px;
    overflow: hidden;
}

.blog-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image svg {
    transform: scale(1.05);
}

.blog-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.blog-date i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

.blog-content .read-more {
    margin-top: auto;
    font-size: 0.9rem;
    align-self: flex-start;
    font-weight: 600;
    padding: 6px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.blog-content .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-content .read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 20px;
}

/* Blog Styles */
.blog-title {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.blog-title h1,
.blog-title .breadcrumbs,
.blog-title .breadcrumbs a,
.blog-title .breadcrumbs span {
    color: var(--light-text);
}

.blog-categories {
    background-color: var(--light-bg);
    padding: 20px 0;
}

.categories-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.category-title {
    margin-right: 20px;
}

.category-title h2 {
    margin-bottom: 0;
    font-size: 1.3rem;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category {
    padding: 5px 15px;
    background-color: var(--background-color);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.category:hover,
.category.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.featured-article {
    padding: 60px 0;
    background-color: var(--background-color);
}

.featured-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.featured-image svg {
    width: 100%;
    height: auto;
}

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

.article-category {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

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

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

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

.author-avatar {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--primary-color);
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}

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

.blog-articles {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.article-card {
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: var(--transition);
}

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

.article-image {
    height: 200px;
}

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

.article-content {
    padding: 20px;
}

.article-content h3 {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-newsletter {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: var(--light-text);
}

.newsletter-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
}

.newsletter-icon {
    font-size: 3rem;
    color: var(--light-text);
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    color: var(--light-text);
    margin-bottom: 10px;
}

.newsletter-form-row {
    display: flex;
    margin-top: 20px;
    margin-bottom: 15px;
}

.newsletter-form-row input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter-form-row button {
    border-radius: 0 4px 4px 0;
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
}

.newsletter-consent input {
    margin-top: 5px;
    margin-right: 10px;
}

/* Blog Post */
.blog-post-title {
    background-color: var(--primary-color);
    padding: 20px 0;
}

.blog-post-title .breadcrumbs,
.blog-post-title .breadcrumbs a,
.blog-post-title .breadcrumbs span {
    color: var(--light-text);
}

.blog-post {
    padding: 60px 0;
}

.blog-post-container {
    max-width: 850px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 30px;
}

.post-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin: 15px 0;
}

.post-featured-image {
    margin-bottom: 30px;
}

.post-featured-image svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.post-introduction {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.post-section {
    margin-bottom: 40px;
}

.post-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.post-section h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.post-section ul, 
.post-section ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

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

.post-illustration {
    margin: 30px 0;
    text-align: center;
}

.post-illustration svg {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.illustration-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 -3px 10px var(--shadow-color);
    z-index: 1000;
    display: none;
}

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

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

.cookie-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.cookie-header h3 i {
    margin-right: 10px;
}

#cookie-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
}

#cookie-close:hover {
    color: var(--primary-color);
}

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

.cookie-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
}

.cookie-option input {
    margin-top: 4px;
    margin-right: 10px;
}

.cookie-option label {
    font-weight: 600;
    margin-right: 10px;
}

.cookie-option label span {
    font-weight: normal;
    font-size: 0.85rem;
    font-style: italic;
}

.cookie-option p {
    margin: 5px 0 0 25px;
    font-size: 0.9rem;
    color: #666;
}

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

.cookie-footer {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
}

/* Footer */
footer {
    position: relative;
}

.footer-wave {
    line-height: 0;
}

.footer-content {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

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

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
}

.footer-column p {
    margin-bottom: 20px;
}

.footer-column h3 {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-column address p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer-column address p i {
    margin-right: 10px;
    margin-top: 3px;
    color: var(--accent-color);
}

.footer-bottom {
    background-color: #083378;
    color: var(--light-text);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links a {
    color: var(--light-text);
    opacity: 0.8;
    margin-left: 20px;
    transition: var(--transition);
}

.legal-links a:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .about-content,
    .equipment-content {
        flex-direction: column;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        margin-top: 10px;
    }
    
    .legal-links a {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--background-color);
        box-shadow: -5px 0 15px var(--shadow-color);
        padding: 80px 20px 20px;
        transition: var(--transition);
        z-index: 99;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 20px 0;
    }
    
    .service-card,
    .review-card {
        max-width: 100%;
    }
    
    .featured-wrapper {
        grid-template-columns: 1fr;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cta-buttons,
    .thank-you-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons .btn,
    .thank-you-buttons .btn {
        width: 100%;
    }
    
    .comparison-content {
        flex-direction: column;
    }
    
    .newsletter-form-row {
        flex-direction: column;
    }
    
    .newsletter-form-row input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form-row button {
        border-radius: 4px;
        width: 100%;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}