/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Colors */
:root {
    --primary-color: #1e3a8a;
    --primary-light: #3b82f6;
    --accent-color: #f97316;
    --accent-light: #fb923c;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-500: #737373;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.btn-white:hover {
    background-color: var(--neutral-100);
}

.btn-primary-small, .btn-outline-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-outline-small {
    background-color: transparent;
    color: var(--neutral-700);
    border: 1px solid var(--neutral-200);
}

.btn-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--neutral-500);
    padding: 4px 8px;
}

/* Header */
.header-top {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.brand-text h1 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
}

.brand-text p {
    font-size: 12px;
    color: var(--neutral-500);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--neutral-700);
    transition: 0.3s;
}

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

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

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--neutral-700);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-indicators {
    display: flex;
    gap: 24px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    padding: 12px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: rotate(0deg);
}

.floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.floating-card p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.floating-card strong {
    color: var(--accent-color);
    font-size: 18px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

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

.services-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-1deg);
    transition: transform 0.5s ease;
}

.services-image:hover img {
    transform: rotate(0deg);
}

.services-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.services-text p {
    font-size: 1.125rem;
    color: var(--neutral-700);
    margin-bottom: 32px;
}

.service-features {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature .icon {
    font-size: 24px;
    margin-top: 4px;
}

.feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.feature p {
    color: var(--neutral-700);
    margin: 0;
}

/* News Section */
.news {
    padding: 80px 0;
    background-color: var(--neutral-100);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.news-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.news-card .card-content {
    padding: 24px;
}

.date {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.news-card p {
    color: var(--neutral-700);
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
}

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

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

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

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: var(--neutral-800);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand img {
    width: 32px;
    height: 32px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-section p {
    color: var(--neutral-200);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--neutral-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--neutral-200);
}

.opening-hours div {
    color: var(--neutral-200);
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--neutral-200);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--neutral-200);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.cookie-text .icon {
    font-size: 20px;
    margin-top: 2px;
}

.cookie-text strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.cookie-text p {
    color: var(--neutral-700);
    font-size: 14px;
    margin: 0;
}

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

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Products Page Styles */
.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero-content-center p {
    font-size: 1.25rem;
    color: var(--neutral-700);
    margin-bottom: 32px;
}

.hero-content-center .trust-indicators {
    justify-content: center;
}

.products {
    padding: 80px 0;
    background-color: var(--white);
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.product-card.reverse {
    direction: rtl;
}

.product-card.reverse > * {
    direction: ltr;
}

.product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: rotate(0deg);
}

.product-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.product-content p {
    font-size: 1.125rem;
    color: var(--neutral-700);
    margin-bottom: 24px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--neutral-700);
}

.specs {
    background-color: var(--neutral-100);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.specs h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.spec-label {
    color: var(--neutral-500);
}

.product-buttons {
    display: flex;
    gap: 16px;
}

.services-included {
    padding: 80px 0;
    background-color: var(--neutral-100);
}

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

.service-item {
    text-align: center;
    background-color: var(--white);
    padding: 40px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-item p {
    color: var(--neutral-700);
    line-height: 1.6;
}

/* Services Page Styles */
.services-list {
    padding: 80px 0;
    background-color: var(--white);
}

.service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 80px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

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

.service-icon-large {
    font-size: 4rem;
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.service-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.service-meta .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-meta .duration {
    font-size: 14px;
    color: var(--neutral-500);
}

.service-content p {
    font-size: 1.125rem;
    color: var(--neutral-700);
    margin-bottom: 24px;
}

.service-includes {
    margin-bottom: 32px;
}

.service-includes h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-includes ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
}

.service-includes li {
    color: var(--neutral-700);
    font-size: 14px;
}

.warranty {
    padding: 80px 0;
    background-color: var(--neutral-100);
}

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

.warranty-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.warranty-text p {
    font-size: 1.125rem;
    color: var(--neutral-700);
    margin-bottom: 32px;
}

.warranty-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.warranty-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.warranty-feature .icon {
    font-size: 24px;
    margin-top: 4px;
}

.warranty-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.warranty-feature p {
    color: var(--neutral-700);
    margin: 0;
}

.warranty-image {
    position: relative;
}

.warranty-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.badge-text {
    font-size: 14px;
    color: var(--neutral-600);
}

.process {
    padding: 80px 0;
    background-color: var(--white);
}

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

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

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

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--neutral-700);
    line-height: 1.6;
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.location-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.contact-info-section p {
    font-size: 1.125rem;
    color: var(--neutral-700);
    margin-bottom: 40px;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--neutral-700);
    margin-bottom: 4px;
}

.contact-text small {
    color: var(--neutral-500);
    font-size: 14px;
}

.opening-times p {
    margin-bottom: 2px;
}

.form-card {
    background-color: var(--neutral-100);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

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

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

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

.form-group label {
    font-weight: 500;
    color: var(--neutral-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--neutral-200);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.checkbox-group label {
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-submit {
    align-self: center;
    min-width: 200px;
}

.map-section {
    padding: 80px 0;
    background-color: var(--neutral-100);
}

.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.map-placeholder {
    background-color: var(--neutral-200);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-info {
    text-align: center;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.map-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.map-info p {
    color: var(--neutral-700);
    margin-bottom: 20px;
}

.directions h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.direction-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.direction-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.direction-icon {
    font-size: 24px;
    margin-top: 4px;
}

.direction-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.direction-item p {
    color: var(--neutral-700);
    line-height: 1.5;
}

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.blog-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.featured-article {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-8px);
}

.featured-article .article-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-article .article-content {
    padding: 32px;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--neutral-500);
}

.featured-article h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-article p {
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--accent-color);
}

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

.blog-post {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-content {
    padding: 24px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--neutral-500);
}

.blog-post h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-post p {
    color: var(--neutral-700);
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 14px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid var(--neutral-200);
    border-radius: 6px;
    text-decoration: none;
    color: var(--neutral-700);
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background-color: var(--neutral-100);
    padding: 24px;
    border-radius: 12px;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--neutral-200);
    border-radius: 6px;
    font-size: 14px;
}

.search-form button {
    padding: 8px 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: var(--primary-light);
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--neutral-700);
    text-decoration: none;
    border-bottom: 1px solid var(--neutral-200);
    transition: color 0.3s ease;
}

.category-list li a:hover {
    color: var(--primary-color);
}

.category-list span {
    color: var(--neutral-500);
    font-size: 12px;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-post {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.recent-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.recent-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.recent-date {
    font-size: 12px;
    color: var(--neutral-500);
}

.newsletter-widget {
    background-color: var(--primary-color);
    color: var(--white);
}

.newsletter-widget h3 {
    color: var(--white);
}

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

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.cta-widget {
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
}

.cta-widget h3 {
    color: var(--white);
}

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

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid var(--neutral-200);
    background-color: var(--white);
    color: var(--neutral-700);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background-color: var(--neutral-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-cta {
    padding: 80px 0;
    background-color: var(--neutral-100);
}

/* Policy Pages Styles */
.policy-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.last-updated {
    color: var(--neutral-500);
    font-size: 14px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--neutral-200);
}

.policy-intro {
    background-color: var(--neutral-100);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.policy-intro p {
    color: var(--neutral-700);
    line-height: 1.6;
    margin: 0;
    font-size: 1.125rem;
}

.policy-section-content {
    margin-bottom: 40px;
}

.policy-section-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-color);
}

.policy-section-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 24px;
}

.policy-section-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    margin-top: 16px;
}

.policy-section-content p {
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: 16px;
}

.policy-section-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.policy-section-content li {
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: 8px;
}

.company-info {
    background-color: var(--neutral-100);
    padding: 20px;
    border-radius: 8px;
    margin: 16px 0;
}

.company-info p {
    margin: 0;
    line-height: 1.8;
}

.contact-details {
    background-color: var(--neutral-100);
    padding: 20px;
    border-radius: 8px;
    margin: 16px 0;
}

.contact-details p {
    margin: 0;
    line-height: 1.8;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Cookie Policy Specific Styles */
.info-box {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.info-box h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.info-box p {
    color: var(--white);
    margin: 0;
}

.cookie-types {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.cookie-type {
    background-color: var(--neutral-100);
    padding: 24px;
    border-radius: 12px;
    position: relative;
}

.cookie-type h3 {
    margin-bottom: 12px;
    padding-right: 100px;
}

.cookie-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-status.essential {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-status.functional,
.cookie-status.analytics,
.cookie-status.marketing {
    background-color: var(--neutral-200);
    color: var(--neutral-700);
}

.cookie-type ul {
    margin-top: 16px;
}

.third-party-services {
    display: grid;
    gap: 16px;
    margin: 20px 0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: var(--neutral-100);
    border-radius: 8px;
}

.service-item h4 {
    margin: 0 0 4px 0;
}

.service-item p {
    margin: 0;
    font-size: 14px;
    color: var(--neutral-600);
}

.service-type {
    padding: 4px 8px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.duration-item {
    background-color: var(--neutral-100);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.duration-item h4 {
    margin-bottom: 8px;
}

.duration {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.cookie-management {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.management-option {
    background-color: var(--neutral-100);
    padding: 20px;
    border-radius: 8px;
}

.management-option h4 {
    margin-bottom: 8px;
}

.browser-guides {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.browser-guide {
    background-color: var(--neutral-100);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.browser-guide h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.browser-guide p {
    font-size: 14px;
    margin: 0;
}

/* Privacy Policy Specific Styles */
.purpose-list {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.purpose-item {
    background-color: var(--neutral-100);
    padding: 20px;
    border-radius: 8px;
}

.purpose-item h4 {
    margin-bottom: 8px;
}

.legal-basis {
    display: inline-block;
    padding: 4px 8px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

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

.right-item {
    background-color: var(--neutral-100);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.right-item h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content,
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 12px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .product-card,
    .product-card.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .service-card,
    .service-card.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        direction: ltr;
        text-align: center;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .service-meta {
        align-items: center;
    }
    
    .service-includes ul {
        grid-template-columns: 1fr;
    }
    
    .warranty-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-badge {
        position: static;
        margin-top: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .services,
    .news,
    .cta {
        padding: 60px 0;
    }
    
    .floating-card {
        position: static;
        margin-top: 20px;
    }
}
