:root {
 --primary-color: #276749; /* Dark Green */
 --accent-color: #38a169; /* Medium Green - lighter primary */
 --text-color: #333333;
 --light-text-color: #666666;
 --white-color: #ffffff;
 --light-bg-color: #f8fafc; /* Very light subtle background */
 --dark-bg-color: #1a4d33; /* Darker shade of primary for footer */
 --border-color: #e2e8f0;
 --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
 --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.1);

 --font-primary: 'Roboto', sans-serif;
 --font-heading: 'Playfair Display', serif;

 --max-width: 1200px;
}

/* Basic Reset & Body Styling */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-primary);
 line-height: 1.6;
 color: var(--text-color);
 background-color: var(--white-color);
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
 max-width: var(--max-width);
 margin: 0 auto;
 padding: 0 1rem;
}

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

h1 {
 font-size: 2.8rem;
 color: var(--white-color); /* Overridden for hero */
}

h2 {
 font-size: 2.2rem;
 text-align: center;
 margin-bottom: 1.5rem;
}

h3 {
 font-size: 1.6rem;
 margin-bottom: 0.8rem;
}

p {
 margin-bottom: 1rem;
 color: var(--light-text-color);
}

.section-subtitle {
 font-size: 1.1rem;
 text-align: center;
 margin-bottom: 3rem;
 color: var(--text-color);
 max-width: 800px;
 margin-left: auto;
 margin-right: auto;
}

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

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

strong {
 font-weight: 700;
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 0.8rem 1.8rem;
 border-radius: 5px;
 font-weight: 700;
 cursor: pointer;
 text-align: center;
 transition: all 0.3s ease;
 border: 2px solid transparent;
}

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

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

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

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

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

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

.btn-lg {
 padding: 1rem 2.5rem;
 font-size: 1.1rem;
}

/* Header */
header {
 background-color: var(--white-color);
 padding: 1rem 0;
 box-shadow: var(--shadow-light);
 position: sticky;
 top: 0;
 z-index: 1000;
 border-bottom: 1px solid var(--border-color);
}

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

.logo {
 font-family: var(--font-heading);
 font-size: 1.8rem;
 font-weight: 700;
 color: var(--primary-color);
 text-decoration: none;
 transition: color 0.3s ease;
}

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

.nav-links {
 list-style: none;
 display: flex;
 gap: 2rem;
}

.nav-links li a {
 font-weight: 500;
 color: var(--text-color);
 padding: 0.5rem 0;
 position: relative;
}

.nav-links li a::after {
 content: '';
 position: absolute;
 left: 0;
 bottom: 0;
 width: 0;
 height: 2px;
 background-color: var(--primary-color);
 transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
 width: 100%;
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 0.5rem;
 z-index: 1001;
}

.nav-toggle span {
 display: block;
 width: 25px;
 height: 3px;
 background-color: var(--primary-color);
 margin: 5px 0;
 transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
 .nav-links {
 display: none;
 flex-direction: column;
 position: absolute;
 top: 0;
 right: 0;
 width: 70%;
 height: 100vh;
 background-color: var(--dark-bg-color);
 padding-top: 5rem;
 box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
 transform: translateX(100%);
 transition: transform 0.4s ease-in-out;
 z-index: 999;
 }

 .nav-links.active {
 display: flex;
 transform: translateX(0);
 }

 .nav-links li {
 width: 100%;
 text-align: center;
 margin-bottom: 1.5rem;
 }

 .nav-links li a {
 color: var(--white-color);
 font-size: 1.2rem;
 padding: 0.8rem 0;
 display: block;
 }

 .nav-links li a::after {
 background-color: var(--accent-color);
 left: 50%;
 transform: translateX(-50%);
 }

 .nav-toggle {
 display: block;
 }

 .nav-toggle.active span:nth-child(1) {
 transform: translateY(8px) rotate(45deg);
 }

 .nav-toggle.active span:nth-child(2) {
 opacity: 0;
 }

 .nav-toggle.active span:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
 }
}

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

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

.bg-primary-tint {
 background-color: rgba(39, 103, 73, 0.05); /* Very slight tint of primary */
}

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

.mt-xl {
 margin-top: 3rem;
}

/* Hero Section */
.hero-section {
 position: relative;
 height: 70vh;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--white-color);
 text-align: center;
 background: url('https://images.pexels.com/photos/6502822/pexels-photo-6502822.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940') no-repeat center center/cover;
}

.hero-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.35); /* Uniform semi-transparent overlay */
 z-index: 1;
}

.hero-content {
 position: relative;
 z-index: 2;
 max-width: 800px;
}

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

.hero-content p {
 font-size: 1.25rem;
 margin-bottom: 2.5rem;
 color: var(--white-color);
}

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

@media (max-width: 768px) {
 .hero-section {
 height: 60vh;
 }
 .hero-content h1 {
 font-size: 2.5rem;
 }
 .hero-content p {
 font-size: 1rem;
 }
}

/* Feature Section */
.features-section h2, .features-section .section-subtitle {
 color: var(--primary-color);
}

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

.feature-item {
 text-align: center;
 padding: 2rem;
 background-color: var(--white-color);
 border-radius: 8px;
 box-shadow: var(--shadow-light);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
 transform: translateY(-10px);
 box-shadow: var(--shadow-medium);
}

.feature-item img {
 width: 100%; /* Make images fill card width */
 max-height: 200px; /* Limit height */
 object-fit: cover;
 border-radius: 8px; /* Match card border radius */
 margin-bottom: 1.5rem;
}

.feature-item h3 {
 color: var(--primary-color);
 margin-bottom: 0.75rem;
}

.feature-item p {
 color: var(--light-text-color);
}

/* About Preview Section */
.about-content-wrapper {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 3rem;
}

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

.about-text h2 {
 text-align: left;
 margin-bottom: 1.5rem;
 font-size: 2rem;
}
.about-text p {
 color: var(--text-color);
 margin-bottom: 1.5rem;
}

.about-image {
 flex: 1;
 min-width: 300px;
}

.about-image img {
 width: 100%;
 height: auto;
 border-radius: 8px;
 box-shadow: var(--shadow-medium);
 max-height: 400px;
 object-fit: cover;
}

@media (max-width: 768px) {
 .about-content-wrapper {
 flex-direction: column;
 text-align: center;
 }
 .about-text h2 {
 text-align: center;
 }
}

/* Services Preview Section */
.services-section {
 background-color: var(--primary-color);
 color: var(--white-color);
 padding: 5rem 0;
}

.services-section h2, .services-section p {
 color: var(--white-color);
}

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

.service-card {
 background-color: var(--white-color);
 padding: 2rem;
 border-radius: 8px;
 box-shadow: var(--shadow-light);
 text-align: center;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
 width: 80px;
 height: 80px;
 object-fit: cover;
 margin: 0 auto 1.5rem auto;
 border-radius: 50%;
 border: 3px solid var(--accent-color);
 padding: 5px;
}

.service-card h3 {
 color: var(--primary-color);
 margin-bottom: 0.75rem;
}

.service-card p {
 color: var(--light-text-color);
 flex-grow: 1;
}

.service-card .read-more {
 font-weight: 600;
 color: var(--primary-color);
 margin-top: 1rem;
 display: inline-block;
}

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

/* Services Page Specific */
.service-item-detailed {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 2.5rem;
 margin-bottom: 4rem;
 padding: 2rem;
 border-radius: 8px;
 background-color: var(--white-color);
 box-shadow: var(--shadow-light);
}

.service-item-detailed:nth-child(even) {
 flex-direction: row-reverse;
 background-color: var(--light-bg-color);
}

.service-item-detailed .service-text {
 flex: 1;
 min-width: 300px;
}

.service-item-detailed .service-text h3 {
 font-size: 1.8rem;
 margin-bottom: 1rem;
 color: var(--primary-color);
}

.service-item-detailed .service-image {
 flex: 1;
 min-width: 300px;
}

.service-item-detailed .service-image img {
 width: 100%;
 height: auto;
 max-height: 350px;
 object-fit: cover;
 border-radius: 8px;
 box-shadow: var(--shadow-light);
}

.service-process {
 text-align: center;
 margin-top: 4rem;
}

.process-step {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 margin-bottom: 2rem;
 max-width: 300px;
 margin-left: auto;
 margin-right: auto;
}

.process-step span.icon {
 font-size: 2.5rem;
 color: var(--accent-color);
 margin-bottom: 0.5rem;
}

.process-step h4 {
 font-size: 1.3rem;
 margin-bottom: 0.5rem;
 color: var(--primary-color);
}

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

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

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

.testimonial-card {
 background-color: var(--white-color);
 padding: 2rem;
 border-radius: 8px;
 box-shadow: var(--shadow-light);
 text-align: center;
 display: flex;
 flex-direction: column;
 align-items: center;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-medium);
}

.testimonial-avatar {
 width: 90px;
 height: 90px;
 border-radius: 50%;
 object-fit: cover;
 margin-bottom: 1rem;
 border: 3px solid var(--primary-color);
 padding: 3px;
}

.testimonial-text {
 font-style: italic;
 margin-bottom: 1rem;
 color: var(--text-color);
}

.testimonial-author {
 font-weight: 600;
 color: var(--primary-color);
}

/* Call to Action Section */
.cta-section {
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
 color: var(--white-color);
 text-align: center;
 padding: 4rem 0;
}

.cta-section h2 {
 color: var(--white-color);
 font-size: 2.5rem;
 margin-bottom: 1.5rem;
}

.cta-section p {
 color: var(--white-color);
 font-size: 1.1rem;
 margin-bottom: 2rem;
 max-width: 700px;
 margin-left: auto;
 margin-right: auto;
}

/* Blog Page Specific */
.blog-list {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
}

.blog-card {
 background-color: var(--white-color);
 border-radius: 8px;
 box-shadow: var(--shadow-light);
 overflow: hidden;
 display: flex;
 flex-direction: column;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-medium);
}

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

.blog-card-content {
 padding: 1.5rem;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}

.blog-card-content h3 {
 font-size: 1.4rem;
 margin-bottom: 0.75rem;
 color: var(--primary-color);
}

.blog-card-content p {
 font-size: 0.95rem;
 color: var(--light-text-color);
 line-height: 1.5;
 flex-grow: 1;
}

.blog-card-meta {
 font-size: 0.85rem;
 color: var(--light-text-color);
 margin-top: 1rem;
}

.blog-card .btn-primary-outline {
 margin-top: 1rem;
 align-self: flex-start;
}

/* Blog Post Page Specific */
.blog-post-content {
 max-width: 800px;
 margin: 0 auto;
 padding: 2rem 0;
}

.blog-post-content h1 {
 font-size: 2.5rem;
 text-align: left;
 color: var(--primary-color);
 margin-bottom: 1rem;
}

.blog-post-meta {
 font-size: 0.9rem;
 color: var(--light-text-color);
 margin-bottom: 2rem;
 border-bottom: 1px solid var(--border-color);
 padding-bottom: 1rem;
}

.blog-post-meta span {
 margin-right: 1rem;
}

.blog-post-image {
 width: 100%;
 max-height: 400px;
 object-fit: cover;
 border-radius: 8px;
 margin-bottom: 2rem;
 box-shadow: var(--shadow-light);
}

.blog-post-body p {
 margin-bottom: 1.5rem;
 font-size: 1.1rem;
 line-height: 1.7;
 color: var(--text-color);
}

.blog-post-body h2 {
 font-size: 2rem;
 margin-top: 2.5rem;
 margin-bottom: 1.2rem;
 text-align: left;
 color: var(--primary-color);
}
.blog-post-body h3 {
 font-size: 1.5rem;
 margin-top: 2rem;
 margin-bottom: 1rem;
 text-align: left;
 color: var(--primary-color);
}

.blog-author-box {
 display: flex;
 align-items: center;
 gap: 1rem;
 background-color: var(--light-bg-color);
 padding: 1.5rem;
 border-radius: 8px;
 margin-top: 3rem;
 border-left: 5px solid var(--primary-color);
}

.blog-author-avatar {
 width: 70px;
 height: 70px;
 border-radius: 50%;
 object-fit: cover;
 border: 2px solid var(--accent-color);
}

.blog-author-info strong {
 display: block;
 font-size: 1.1rem;
 color: var(--primary-color);
 margin-bottom: 0.25rem;
}

.blog-author-info p {
 font-size: 0.9rem;
 margin-bottom: 0;
 color: var(--light-text-color);
}

/* Related Posts */
.related-posts {
 margin-top: 4rem;
 border-top: 1px solid var(--border-color);
 padding-top: 2rem;
}

.related-posts h2 {
 text-align: center;
 margin-bottom: 2rem;
}

.related-posts-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.5rem;
}

/* Contact Page Specific */
.contact-section {
 display: flex;
 flex-wrap: wrap;
 gap: 2rem;
 padding: 3rem 0; /* Adjusted for contact page */
}

.contact-form-wrapper {
 flex: 2;
 min-width: 300px;
 background-color: var(--white-color);
 padding: 2.5rem;
 border-radius: 8px;
 box-shadow: var(--shadow-medium);
}

.contact-form-wrapper h2 {
 text-align: left;
 margin-bottom: 1.5rem;
}

.contact-form-wrapper label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: 500;
 color: var(--text-color);
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
 width: 100%;
 padding: 0.8rem 1rem;
 margin-bottom: 1.5rem;
 border: 1px solid var(--border-color);
 border-radius: 5px;
 font-family: var(--font-primary);
 font-size: 1rem;
 transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
 border-color: var(--primary-color);
 outline: none;
 box-shadow: 0 0 0 3px rgba(39, 103, 73, 0.2);
}

.contact-form-wrapper textarea {
 min-height: 120px;
 resize: vertical;
}

.contact-info-wrapper {
 flex: 1;
 min-width: 300px;
}

.contact-details {
 background-color: var(--light-bg-color);
 padding: 2.5rem;
 border-radius: 8px;
 box-shadow: var(--shadow-light);
 margin-bottom: 2rem;
}

.contact-details h3 {
 margin-bottom: 1.5rem;
 color: var(--primary-color);
}

.contact-details p {
 display: flex;
 align-items: flex-start;
 margin-bottom: 1rem;
 font-size: 1rem;
 color: var(--text-color);
}

.contact-details p svg {
 margin-right: 10px;
 color: var(--accent-color);
 font-size: 1.2rem;
 min-width: 20px;
}

.map-container {
 width: 100%;
 height: 400px;
 border-radius: 8px;
 overflow: hidden;
 box-shadow: var(--shadow-medium);
}

.map-container iframe {
 width: 100%;
 height: 100%;
 border: 0;
}

/* Gallery Page Specific */
.gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1rem;
}

.gallery-item {
 cursor: pointer;
 overflow: hidden;
 border-radius: 8px;
 box-shadow: var(--shadow-light);
 position: relative;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
 transform: scale(1.03);
 box-shadow: var(--shadow-medium);
}

.gallery-item img {
 width: 100%;
 height: 250px;
 object-fit: cover;
 display: block;
 transition: opacity 0.3s ease;
}

.gallery-item:hover img {
 opacity: 0.8;
}

.lightbox {
 display: none;
 position: fixed;
 z-index: 2000;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.8);
 justify-content: center;
 align-items: center;
 opacity: 0;
 transition: opacity 0.3s ease;
}

.lightbox.active {
 display: flex;
 opacity: 1;
}

.lightbox-content {
 max-width: 90%;
 max-height: 90%;
 object-fit: contain;
 border-radius: 8px;
 box-shadow: var(--shadow-medium);
}

.lightbox-close {
 position: absolute;
 top: 20px;
 right: 30px;
 color: var(--white-color);
 font-size: 40px;
 font-weight: bold;
 cursor: pointer;
}

/* FAQ Page Specific (Accordion) */
.accordion {
 max-width: 800px;
 margin: 3rem auto;
}

.accordion-item {
 border: 1px solid var(--border-color);
 border-radius: 8px;
 margin-bottom: 1rem;
 overflow: hidden;
 background-color: var(--white-color);
 box-shadow: var(--shadow-light);
}

.accordion-header {
 background-color: var(--light-bg-color);
 padding: 1.2rem 1.5rem;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-weight: 700;
 font-size: 1.1rem;
 color: var(--primary-color);
 transition: background-color 0.3s ease;
}

.accordion-header:hover {
 background-color: var(--border-color);
}

.accordion-header .icon {
 font-size: 1.5rem;
 color: var(--accent-color);
 transition: transform 0.3s ease;
}

.accordion-header.active .icon {
 transform: rotate(180deg);
}

.accordion-content {
 padding: 0 1.5rem;
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease-out;
 background-color: var(--white-color);
}

.accordion-content p {
 padding: 1.2rem 0;
 margin-bottom: 0;
 color: var(--text-color);
}

/* Legal Pages */
.legal-content {
 max-width: 800px;
 margin: 0 auto;
 padding-bottom: 3rem;
}
.legal-content h1 {
 font-size: 2.5rem;
 text-align: center;
 margin-bottom: 2rem;
 color: var(--primary-color);
}
.legal-content h2 {
 font-size: 1.8rem;
 margin-top: 2.5rem;
 margin-bottom: 1rem;
 text-align: left;
 color: var(--primary-color);
}
.legal-content h3 {
 font-size: 1.4rem;
 margin-top: 1.8rem;
 margin-bottom: 0.8rem;
 text-align: left;
 color: var(--primary-color);
}

.legal-content p, .legal-content ul, .legal-content ol {
 margin-bottom: 1rem;
 color: var(--text-color);
 line-height: 1.7;
}
.legal-content ul, .legal-content ol {
 padding-left: 1.5rem;
}
.legal-content li {
 margin-bottom: 0.5rem;
}
.legal-content strong {
 color: var(--primary-color);
}

/* Thanks Page */
.thanks-section {
 min-height: 70vh;
 display: flex;
 justify-content: center;
 align-items: center;
 text-align: center;
 background-color: var(--light-bg-color);
}

.thanks-content {
 background-color: var(--white-color);
 padding: 3rem;
 border-radius: 8px;
 box-shadow: var(--shadow-medium);
 max-width: 600px;
 margin: 2rem auto;
}

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

.thanks-content p {
 font-size: 1.1rem;
 margin-bottom: 2rem;
 color: var(--text-color);
}

/* 404 Page */
.error-section {
 min-height: 70vh;
 display: flex;
 justify-content: center;
 align-items: center;
 text-align: center;
 background-color: var(--light-bg-color);
}

.error-content {
 background-color: var(--white-color);
 padding: 3rem;
 border-radius: 8px;
 box-shadow: var(--shadow-medium);
 max-width: 600px;
 margin: 2rem auto;
}

.error-content h1 {
 color: var(--accent-color);
 font-size: 6rem;
 margin-bottom: 1rem;
 line-height: 1;
}

.error-content h2 {
 color: var(--primary-color);
 font-size: 2.2rem;
 margin-bottom: 1.5rem;
}

.error-content p {
 font-size: 1.1rem;
 margin-bottom: 2rem;
 color: var(--text-color);
}

/* Footer */
footer {
 background-color: var(--dark-bg-color);
 color: var(--white-color);
 padding: 3rem 0 1rem 0;
 margin-top: 4rem;
}

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

.footer-col h3, .footer-col h4 {
 color: var(--white-color);
 margin-bottom: 1rem;
 font-family: var(--font-heading);
}

.footer-col p, .footer-col li a {
 font-size: 0.95rem;
 color: rgba(255, 255, 255, 0.8);
 line-height: 1.8;
}

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

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

.footer-col li a:hover {
 color: var(--accent-color);
 text-decoration: underline;
}

.footer-col .contact-info p a {
 color: rgba(255, 255, 255, 0.8);
}
.footer-col .contact-info p a:hover {
 color: var(--accent-color);
}

.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding-top: 1rem;
 text-align: center;
}

.footer-bottom p {
 font-size: 0.85rem;
 color: rgba(255, 255, 255, 0.6);
 margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
 .container {
 padding: 0 1.5rem;
 }
 h1 {
 font-size: 2.5rem;
 }
 h2 {
 font-size: 2rem;
 }
 .hero-content h1 {
 font-size: 3rem;
 }
}

@media (max-width: 768px) {
 .section-padding {
 padding: 4rem 0;
 }
 h1 {
 font-size: 2rem;
 }
 h2 {
 font-size: 1.8rem;
 }
 h3 {
 font-size: 1.4rem;
 }
 .hero-section {
 height: 50vh;
 }
 .hero-content h1 {
 font-size: 2.2rem;
 }
 .hero-content p {
 font-size: 0.95rem;
 }
 .hero-buttons {
 flex-direction: column;
 gap: 1rem;
 }
 .btn-lg {
 width: 80%;
 margin: 0 auto;
 }
 .about-content-wrapper, .service-item-detailed {
 flex-direction: column;
 }
 .about-text h2, .service-item-detailed .service-text h3 {
 text-align: center;
 }
 .contact-section {
 flex-direction: column;
 gap: 0;
 }
 .contact-form-wrapper, .contact-info-wrapper {
 padding: 1.5rem;
 }
 .contact-form-wrapper {
 margin-bottom: 2rem;
 }
 .contact-form-wrapper h2 {
 text-align: center;
 }
 .footer-grid {
 grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
 text-align: center;
 }
 .footer-col ul {
 padding-left: 0;
 }
 .footer-col li {
 text-align: center;
 }
 .footer-col.brand-info {
 grid-column: 1 / -1;
 }
 .error-content h1 {
 font-size: 4rem;
 }
 .error-content h2 {
 font-size: 1.8rem;
 }
}

/* Additional utility classes */
.sr-only {
 position: absolute;
 width: 1px;
 height: 1px;
 padding: 0;
 margin: -1px;
 overflow: hidden;
 clip: rect(0, 0, 0, 0);
 white-space: nowrap;
 border-width: 0;
}