/* 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: #000;
    background-color: #fefefe;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

a:hover {
    color: #922b21;
}

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

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

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

.btn-primary:hover {
    background-color: #922b21;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

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

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

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

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

/* Header */
.header {
    background-color: #f8f9fa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

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

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

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #000;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c0392b;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

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

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

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

.hero-text h1 {
    font-size: 3rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

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

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

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

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

.service-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ecf0f1;
}

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

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

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

.service-card p {
    color: #5a6c7d;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #000;
    margin-bottom: 1.5rem;
}

.about-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.about-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: bold;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

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

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

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    border-left: 4px solid #c0392b;
}

.testimonial-icon {
    margin-bottom: 1rem;
}

.testimonial-icon .icon {
    width: 48px;
    height: 48px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.testimonial-author strong {
    color: #000;
    font-weight: 600;
}

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

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.blog-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.blog-image img {
    max-width: 100px;
    height: auto;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 a {
    color: #000;
}

.blog-content h3 a:hover {
    color: #c0392b;
}

.blog-date {
    color: #95a5a6;
    font-size: 0.9rem;
}

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

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #c0392b 0%, #922b21 100%);
    color: white;
}

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

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

.newsletter p {
    color: #f8f9fa;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background-color: white;
    color: #000;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-content {
    display: grid;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

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

.social-media {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #c0392b;
    font-weight: 500;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

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

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

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.footer-brand p {
    color: #bdc3c7;
    margin-top: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
}

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

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

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    color: white;
    padding: 1rem;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

/* Cookie Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #000;
}

.cookie-category {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid #ecf0f1;
    border-radius: 6px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-category span {
    font-size: 0.9rem;
    color: #5a6c7d;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #000 0%, #34495e 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
}

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

.page-header p {
    color: #bdc3c7;
    font-size: 1.2rem;
}

.update-date {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 1rem;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
    background-color: white;
}

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

.legal-text h2 {
    color: #000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecf0f1;
}

.legal-text h3 {
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-text ul, .legal-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    margin-top: 70px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

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

.thank-you-content h1 {
    color: #000;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
}

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

.step-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background-color: white;
}

.blog-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-article {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
}

.article-img {
    max-width: 80px;
    height: auto;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #95a5a6;
}

.article-category {
    background-color: #c0392b;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.read-more {
    color: #c0392b;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: #5a6c7d;
    font-size: 0.9rem;
}

.sidebar-widget ul li a:hover {
    color: #c0392b;
}

.sidebar-widget ul li span {
    color: #95a5a6;
    font-size: 0.8rem;
}

.recent-posts li {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.recent-posts span {
    font-size: 0.8rem;
    color: #95a5a6;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: #ecf0f1;
    color: #5a6c7d;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

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

.cta-widget {
    background: linear-gradient(135deg, #c0392b 0%, #922b21 100%);
    color: white;
}

.cta-widget h3 {
    color: white;
}

.cta-widget p {
    color: #f8f9fa;
}

/* Article Content */
.article-header {
      background: linear-gradient(135deg, #7c7c7c 0%, #34495e 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.breadcrumb a {
    color: #bdc3c7;
}

.breadcrumb a:hover {
    color: white;
}

.article-content {
    padding: 60px 0;
    background-color: white;
}

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

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

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

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-text h2 {
    color: #000;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.article-text h3 {
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.article-text ul, .article-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-text li {
    margin-bottom: 0.8rem;
    color: #5a6c7d;
}

.article-highlight {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #c0392b;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.article-image-inline {
    text-align: center;
    margin: 2rem 0;
}

.inline-image {
    max-width: 150px;
    height: auto;
}

.article-cta {
    background: linear-gradient(135deg, #c0392b 0%, #922b21 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.cta-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: #f8f9fa;
    margin-bottom: 1rem;
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.share-widget .share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    padding: 0.5rem 1rem;
    background-color: #ecf0f1;
    color: #5a6c7d;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

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

/* Specialized Article Elements */
.article-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.type-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.type-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.mistake-details {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mistake-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.work-order {
    background-color: #f0fff4;
    border: 1px solid #c6f6d5;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.order-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* Company Info Sections */
.company-story {
    padding: 60px 0;
    background-color: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.mission {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

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

.value-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.team {
    padding: 60px 0;
    background-color: white;
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-member {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.member-role {
    color: #c0392b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #000 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.stats h2 {
    color: white;
    margin-bottom: 3rem;
}

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

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #bdc3c7;
    font-size: 1.1rem;
}

.why-choose {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.reason-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #c0392b 0%, #922b21 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    color: #f8f9fa;
    margin-bottom: 2rem;
}

/* Legal Page Specific Styles */
.contact-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.purposes-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.purpose-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.purpose-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

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

.right-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.right-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.authority-contact {
    background-color: #f0f8ff;
    border: 1px solid #b3d9ff;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

/* Terms Page Specific Styles */
.terms-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.section-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.payment-terms {
    background-color: #f0fff4;
    border: 1px solid #c6f6d5;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.payment-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.warranty-section {
    background-color: #fff5f0;
    border: 1px solid #fed7cc;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warranty-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.cancellation-section {
    background-color: #f5f5f5;
    border: 1px solid #d3d3d3;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cancellation-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.contact-footer {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

/* Cookie Policy Specific Styles */
.intro-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.cookies-table {
    margin: 2rem 0;
}

.cookies-table h3 {
    margin-bottom: 1rem;
    color: #000;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookies-table th {
    background-color: #34495e;
    color: white;
    font-weight: 600;
}

.cookie-settings {
    background-color: #f0f8ff;
    border: 1px solid #b3d9ff;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.settings-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.status {
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.status.enabled {
    background-color: #c6f6d5;
    color: #2d7738;
}

.status.disabled {
    background-color: #fed7d7;
    color: #c53030;
}

.browser-settings {
    margin: 2rem 0;
}

.browser-item {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.browser-item h4 {
    color: #000;
    margin-bottom: 0.5rem;
}

.consequences {
    background-color: #fff5f0;
    border: 1px solid #fed7cc;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.consequences-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f8f9fa;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

    .blog-section .container {
        grid-template-columns: 1fr;
    }

    .blog-article {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

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

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .mission-values {
        grid-template-columns: 1fr;
    }

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

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

    .services-list {
        grid-template-columns: 1fr;
    }

    .article-types {
        grid-template-columns: 1fr;
    }

    .article-highlight {
        flex-direction: column;
        text-align: center;
    }

    .article-cta {
        flex-direction: column;
        text-align: center;
    }

    .mistake-details {
        flex-direction: column;
        text-align: center;
    }

    .work-order {
        flex-direction: column;
        text-align: center;
    }

    .contact-box {
        flex-direction: column;
        text-align: center;
    }

    .purpose-item {
        flex-direction: column;
        text-align: center;
    }

    .terms-section {
        flex-direction: column;
        text-align: center;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .payment-terms {
        flex-direction: column;
        text-align: center;
    }

    .warranty-section {
        flex-direction: column;
        text-align: center;
    }

    .cancellation-section {
        flex-direction: column;
        text-align: center;
    }

    .intro-section {
        flex-direction: column;
        text-align: center;
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

    .thank-you-content h1 {
        font-size: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-content {
        width: 95%;
        padding: 1rem;
    }

    .cookies-table {
        overflow-x: auto;
    }

    .cookies-table table {
        min-width: 500px;
    }
}

/* Hidden class for cookie banner */
.hidden {
    display: none !important;
}
