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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

.lead {
    font-size: 1.125rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 1.5rem;
}

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

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

.btn-primary:hover {
    background-color: #a01729;
    border-color: #a01729;
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #545b62;
    border-color: #545b62;
    color: white;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: #c41e3a;
    border-color: #c41e3a;
}

.btn-outline:hover {
    background-color: #c41e3a;
    color: white;
    text-decoration: none;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: #c41e3a;
    text-decoration: none;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c41e3a;
    text-decoration: none;
}

.nav-brand i {
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

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

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c41e3a;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #c41e3a;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #c41e3a 0%, #8b1a2b 100%);
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%);
    background-size: 60px 60px, 40px 40px, 80px 80px, 80px 80px;
    background-position: 0 0, 30px 30px, 0 0, 40px 40px;
    animation: heroPattern 20s linear infinite;
    z-index: 1;
}

@keyframes heroPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

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

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: #ffffff;
    color: #c41e3a;
    border: 2px solid #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero .btn-outline:hover {
    background: #ffffff;
    color: #c41e3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1a2b 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

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

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    color: white;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-primary {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1a2b 100%);
    color: white;
}

.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary p {
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.services-grid,
.featured-grid,
.testimonials-grid,
.blog-grid,
.values-grid,
.team-grid,
.awards-grid,
.categories-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

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

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

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

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

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

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

/* Cards */
.service-card,
.featured-card,
.testimonial-card,
.blog-card,
.value-card,
.team-member,
.award-item,
.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover,
.featured-card:hover,
.blog-card:hover,
.value-card:hover,
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card i,
.featured-card i,
.value-card i,
.team-member i,
.award-item i,
.category-card i {
    font-size: 3rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.service-card h3,
.featured-card h3,
.value-card h3,
.team-member h3,
.award-item h3,
.category-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Blog Cards */
.blog-card {
    text-align: left;
}

.blog-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.blog-icon i {
    font-size: 3rem;
    color: #c41e3a;
}

.blog-content h3 {
    margin-bottom: 0.5rem;
}

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

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

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.tag {
    background-color: #f8f9fa;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
}

.read-more {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #a01729;
    text-decoration: none;
}

/* Testimonials */
.testimonial-card {
    text-align: left;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.125rem;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author i {
    font-size: 2.5rem;
    color: #c41e3a;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

/* Stats */
.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-item i {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

/* Trends */
.trend {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.trend.up {
    background-color: #d4edda;
    color: #155724;
}

.trend.stable {
    background-color: #fff3cd;
    color: #856404;
}

.trend.hot {
    background-color: #f8d7da;
    color: #721c24;
}

/* Newsletter */
.newsletter-section {
    padding: 3rem 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #c41e3a;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #c41e3a;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

/* Contact Information */
.contact-info {
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info i {
    color: #c41e3a;
    margin-right: 0.5rem;
    width: 16px;
}

.contact-info a {
    color: #c41e3a;
    text-decoration: none;
}

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

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

.contact-item i {
    font-size: 1.5rem;
    color: #c41e3a;
    margin-top: 0.25rem;
    min-width: 24px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

.quick-contact-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.quick-contact-item i {
    font-size: 3rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

/* Map */
.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 4rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.map-directions {
    margin-top: 1rem;
}

/* Map Section Styles */
.map-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.map-info {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.map-address h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-address p {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.map-directions {
    flex-shrink: 0;
    margin-left: 1rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand i {
    margin-right: 0.5rem;
    color: #c41e3a;
}

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

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

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

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #bbb;
    margin-bottom: 1rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #c41e3a;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #a01729;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-legal a:hover,
.footer-legal a.active {
    color: white;
}

.footer-bottom p {
    color: #bbb;
    margin: 0;
    font-size: 0.875rem;
}

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

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

/* Article Styles */
.article-header {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1a2b 100%);
    color: white;
    padding: 8rem 0 2rem;
    margin-top: 80px;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.6;
}

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

.article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.9;
}

.article-content {
    padding: 4rem 0;
}

.article-body {
    line-height: 1.8;
}

.article-intro {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.article-icon {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-top: 0.25rem;
    min-width: 40px;
}

.article-body ul,
.article-body ol {
    margin: 1rem 0 1rem 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

/* Info Boxes */
.info-box,
.warning-box,
.conclusion-box {
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-box {
    background-color: #e7f3ff;
    border-left: 5px solid #007bff;
}

.warning-box {
    background-color: #fff8e1;
    border-left: 5px solid #ff9800;
}

.conclusion-box {
    background-color: #e8f5e8;
    border-left: 5px solid #28a745;
}

.info-box i,
.warning-box i,
.conclusion-box i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.info-box i {
    color: #007bff;
}

.warning-box i {
    color: #ff9800;
}

.conclusion-box i {
    color: #28a745;
}

.info-box h4,
.warning-box h4,
.conclusion-box h4 {
    margin-bottom: 0.5rem;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.sidebar-section h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.share-btn.facebook {
    background-color: #3b5998;
    color: white;
}

.share-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background-color: #0077b5;
    color: white;
}

.share-btn.email {
    background-color: #666;
    color: white;
}

.share-btn:hover {
    opacity: 0.9;
    text-decoration: none;
    color: white;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.related-article:hover {
    border-color: #c41e3a;
}

.related-article i {
    font-size: 1.5rem;
    color: #c41e3a;
    margin-top: 0.25rem;
    min-width: 24px;
}

.related-article h5 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.related-article h5 a {
    color: #2c3e50;
    text-decoration: none;
}

.related-article h5 a:hover {
    color: #c41e3a;
}

.related-article span {
    font-size: 0.75rem;
    color: #666;
}

.cta-section {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1a2b 100%);
    color: white;
}

.cta-section h4,
.cta-section p {
    color: white;
}

.cta-section .contact-info {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Calculator Widget */
.calculator-widget {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
}

.calculator-widget label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.calculator-widget input {
    margin-bottom: 1rem;
}

.calc-results {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 1rem;
}

.calc-results p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Market Widget */
.market-widget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.market-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 0.875rem;
}

.market-item .label {
    font-weight: 500;
}

.market-item .value {
    font-weight: 600;
}

.market-item .change {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
}

.market-item .change.positive {
    background-color: #d4edda;
    color: #155724;
}

.market-item .change.negative {
    background-color: #f8d7da;
    color: #721c24;
}

/* Legal Documents */
.legal-content {
    padding: 4rem 0;
}

.legal-document {
    line-height: 1.8;
}

.document-meta {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.legal-document h2 {
    border-bottom: 2px solid #c41e3a;
    padding-bottom: 0.5rem;
    margin-top: 3rem;
}

.legal-document h3 {
    color: #c41e3a;
    margin-top: 2rem;
}

.contact-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.last-updated {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    margin-top: 3rem;
    font-size: 0.875rem;
    color: #666;
}

/* Services Page */
.service-detail {
    margin: 4rem 0;
    padding: 2rem 0;
}

.service-detail:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.service-content h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.service-features i {
    color: #28a745;
    font-size: 0.875rem;
    min-width: 16px;
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.service-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.service-icon-large i {
    font-size: 8rem;
    color: #c41e3a;
    opacity: 0.1;
}

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

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

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

.process-step i {
    font-size: 2.5rem;
    color: #666;
    margin-bottom: 1rem;
}

/* About Page */
.mission-image,
.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.team-member .role {
    color: #c41e3a;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Blog Page */
.featured-article {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.featured-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-content {
    padding: 2rem;
}

.featured-badge {
    background-color: #c41e3a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c41e3a 0%, #8b1a2b 100%);
}

.featured-image i {
    font-size: 5rem;
    color: white;
    opacity: 0.8;
}

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

.blog-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.blog-preview-card i {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-top: 0.25rem;
    min-width: 40px;
}

.blog-preview-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.category-count {
    background-color: #c41e3a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* Thank You Page */
.thank-you-section {
    padding: 6rem 0;
}

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

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

.thank-you-icon i {
    font-size: 5rem;
    color: #28a745;
}

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

.thank-you-details {
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

.step i {
    font-size: 1.5rem;
    color: #c41e3a;
    margin-top: 0.25rem;
    min-width: 24px;
}

.step h4 {
    margin-bottom: 0.5rem;
}

.thank-you-actions {
    margin: 3rem 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.urgent-contact {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.urgent-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.business-hours {
    font-size: 0.875rem;
    color: #666;
}

.newsletter-cta {
    padding: 3rem 0;
}

.recent-articles {
    padding: 3rem 0;
}

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

.article-preview {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.article-preview i {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.article-preview h4 {
    margin-bottom: 0.5rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .article-meta-header h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .col-md-4,
    .col-md-6,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
    }
    
    .article-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .article-meta {
        justify-content: center;
    }
    
    .sidebar-section {
        margin-bottom: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .urgent-contact-info {
        flex-direction: column;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .next-steps {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1,
    .article-meta-header h1 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .featured-card,
    .testimonial-card,
    .blog-card,
    .value-card,
    .team-member,
    .award-item,
    .category-card {
        padding: 1.5rem;
    }
    
    .sidebar-section {
        padding: 1.5rem;
    }
    
    .article-intro {
        padding: 1.5rem;
    }
    
    .hero-buttons .btn,
    .action-buttons .btn {
        width: 100%;
    }
    
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-preview-card {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-contact-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .sidebar-section,
    .share-buttons,
    .btn,
    .footer {
        display: none !important;
    }
    
    body {
        padding-top: 0;
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .article-content {
        padding: 0;
    }
    
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    p, li {
        orphans: 3;
        widows: 3;
    }
    
    .info-box,
    .warning-box,
    .conclusion-box {
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .service-card,
    .featured-card,
    .blog-card {
        border: 2px solid #333;
    }
    
    .navbar {
        border-bottom: 2px solid #333;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* This would be implemented if dark mode support was required */
}
