:root {
 --primary-color: #FF00FF; /* Hot Pink */
 --secondary-color: #00FFFF; /* Electric Blue */
 --accent-color: #00FF00; /* Lime Green */
 --dark-bg: #1A1A1A;
 --light-text: #FFFFFF;
 --dark-text: #000000;
 --gray-text: #CCCCCC;
 --element-bg: #333333;
 --border-color: #555555;
 --hover-effect: #FFFF00; /* Neon Yellow */

 --font-heading: 'Press Start 2P', cursive;
 --font-body: 'VT323', monospace; /* Pixel-style font for body text */
}

/* Base styles and reset */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-body);
 line-height: 1.6;
 color: var(--light-text);
 background-color: var(--dark-bg);
}

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

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

ul {
 list-style: none;
}

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.5rem; color: var(--accent-color); }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
 margin-bottom: 1rem;
}

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

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

/* Retro Patterns */
.retro-pattern {
 background-image:
 radial-gradient(var(--element-bg) 15%, transparent 16%),
 radial-gradient(var(--element-bg) 15%, transparent 16%);
 background-size: 20px 20px;
 background-position: 0 0, 10px 10px;
 background-color: var(--dark-bg);
}

/* Header */
.main-header {
 background-color: var(--element-bg);
 border-bottom: 3px solid var(--primary-color);
 padding: 1rem 0;
 position: sticky;
 top: 0;
 z-index: 1000;
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 0 1.5rem;
}

.navbar .logo {
 font-family: var(--font-heading);
 font-size: 1.8rem;
 color: var(--accent-color);
 text-shadow: 2px 2px var(--primary-color);
 padding: 0.5rem 0;
 position: relative;
 z-index: 2; /* Ensure logo is above nav-toggle on mobile */
}

.nav-links {
 display: flex;
 gap: 1.5rem;
}

.nav-links li a {
 color: var(--light-text);
 padding: 0.5rem 1rem;
 border: 2px solid transparent;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
 display: block;
}

.nav-links li a::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background-color: var(--secondary-color);
 mix-blend-mode: color-burn; /* Gives a cool effect when overlapping */
 transition: left 0.3s ease-out;
 z-index: -1;
}

.nav-links li a:hover::before {
 left: 0;
}

.nav-links li a:hover {
 color: var(--dark-text);
 text-shadow: none;
}

.nav-toggle {
 display: none;
 flex-direction: column;
 justify-content: space-between;
 width: 30px;
 height: 20px;
 background: none;
 border: none;
 cursor: pointer;
 padding: 0;
 position: relative;
 z-index: 2;
}

.nav-toggle span {
 display: block;
 width: 100%;
 height: 3px;
 background-color: var(--primary-color);
 transition: all 0.3s ease;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
 .nav-links {
 display: none;
 flex-direction: column;
 position: absolute;
 top: 100%;
 left: 0;
 width: 100%;
 background-color: var(--element-bg);
 border-top: 3px solid var(--primary-color);
 padding: 1rem 0;
 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
 border-bottom: 3px solid var(--secondary-color);
 }

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

 .nav-links li {
 text-align: center;
 margin: 0.5rem 0;
 }
 .nav-links li a {
 padding: 0.8rem 1rem;
 border-bottom: 1px dotted var(--border-color);
 }

 .nav-toggle {
 display: flex;
 }

 .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: 4rem 0;
 position: relative;
 overflow: hidden;
}

section h2 {
 text-align: center;
 margin-bottom: 3rem;
 position: relative;
 color: var(--light-text);
 font-size: 2.5rem;
 text-shadow: 3px 3px var(--primary-color);
}

section h2 span {
 display: block;
 font-size: 1.2rem;
 font-family: var(--font-body);
 color: var(--secondary-color);
 margin-bottom: 0.5rem;
 text-shadow: none;
}

/* Hero Section */
.hero-section {
 background-color: var(--element-bg);
 min-height: 80vh;
 display: flex;
 align-items: center;
 background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23FF00FF" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zm0-30V0H4v4H0v2h4v4h2V6h4V4H6z"%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
 background-size: 30px 30px;
}

.hero-content {
 display: flex;
 align-items: center;
 gap: 3rem;
 padding-top: 2rem;
}

.hero-text-content {
 flex: 1;
 text-align: left;
}

.hero-text-content h1 {
 font-size: 3.5rem;
 margin-bottom: 1.5rem;
 text-shadow: 4px 4px var(--dark-text);
}

.hero-text-content p {
 font-size: 1.2rem;
 color: var(--gray-text);
 margin-bottom: 2rem;
}

.hero-image-container {
 flex: 1;
 position: relative;
}

.hero-image-container img {
 border: 5px solid var(--secondary-color);
 box-shadow: 10px 10px 0 var(--primary-color), 15px 15px 0 var(--accent-color);
 border-radius: 8px;
}

.hero-image-container::before {
 content: '';
 position: absolute;
 top: -20px;
 left: -20px;
 width: 100%;
 height: 100%;
 background-color: var(--primary-color);
 opacity: 0.1;
 transform: rotate(-5deg);
 z-index: -1;
 border-radius: 12px;
}

/* CTA Button */
.cta-button {
 display: inline-block;
 background-color: var(--accent-color);
 color: var(--dark-text);
 font-family: var(--font-heading);
 padding: 1rem 2rem;
 border: 3px solid var(--primary-color);
 border-radius: 8px;
 font-size: 1.1rem;
 transition: all 0.3s ease;
 box-shadow: 4px 4px 0 var(--secondary-color);
 position: relative;
 overflow: hidden;
 text-transform: uppercase;
}

.cta-button:hover {
 background-color: var(--primary-color);
 color: var(--light-text);
 border-color: var(--accent-color);
 box-shadow: -4px -4px 0 var(--secondary-color);
 transform: translateY(-2px);
}

/* Retro Card Style */
.retro-card {
 background-color: var(--element-bg);
 border: 3px solid var(--primary-color);
 border-radius: 8px;
 padding: 2rem;
 box-shadow: 8px 8px 0 var(--secondary-color), 12px 12px 0 var(--accent-color);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 position: relative;
 overflow: hidden;
}

.retro-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-image:
 linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
 linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
 linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.05) 75%),
 linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.05) 75%);
 background-size: 20px 20px;
 opacity: 0.5;
 z-index: 0;
}

.retro-card:hover {
 transform: translate(-4px, -4px);
 box-shadow: 12px 12px 0 var(--secondary-color), 16px 16px 0 var(--accent-color);
}

.retro-card h3 {
 font-size: 1.3rem;
 color: var(--secondary-color);
 text-shadow: 2px 2px var(--primary-color);
 position: relative;
 z-index: 1;
}

.retro-card p {
 color: var(--gray-text);
 position: relative;
 z-index: 1;
}

.retro-card .read-more {
 font-family: var(--font-heading);
 color: var(--accent-color);
 display: inline-block;
 margin-top: 1rem;
 font-size: 0.9rem;
 position: relative;
 z-index: 1;
}

.retro-card .read-more:hover {
 color: var(--primary-color);
 text-decoration: underline;
}

.retro-card .icon {
 font-size: 2rem;
 display: block;
 margin-bottom: 1rem;
 color: var(--primary-color);
 text-shadow: 2px 2px var(--dark-text);
}

/* "What's Up" Section (Features) */
.whatsup-section {
 background-color: var(--dark-bg);
}

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

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

.about-content {
 display: flex;
 align-items: center;
 gap: 3rem;
 flex-wrap: wrap;
}

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

.about-image img {
 border: 5px solid var(--accent-color);
 box-shadow: 10px 10px 0 var(--secondary-color), 15px 15px 0 var(--primary-color);
 border-radius: 8px;
}

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

.about-text h2 {
 text-align: left;
 text-shadow: 3px 3px var(--dark-text);
 color: var(--light-text);
}

.about-text h2 span {
 color: var(--primary-color);
}

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

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

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

.testimonial-card .author-info {
 display: flex;
 flex-direction: column;
 align-items: center;
 margin-bottom: 1.5rem;
}

.testimonial-card .author-info img {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
 border: 3px solid var(--accent-color);
 box-shadow: 0 0 0 5px var(--primary-color);
 margin-bottom: 1rem;
}

.testimonial-card .author-name {
 font-family: var(--font-heading);
 color: var(--secondary-color);
 font-size: 1.1rem;
 margin-bottom: 0.5rem;
}

.testimonial-card .author-title {
 font-size: 0.9rem;
 color: var(--gray-text);
 margin-bottom: 0;
}

.testimonial-card .quote {
 font-style: italic;
 color: var(--light-text);
 font-size: 1rem;
 margin-bottom: 0;
}

/* Blog Preview Section */
.blog-preview-section {
 background-color: var(--element-bg);
}

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

.blog-card img {
 border: 3px solid var(--secondary-color);
 box-shadow: 5px 5px 0 var(--accent-color);
 border-radius: 4px;
 margin-bottom: 1rem;
}

.blog-card h3 a {
 color: var(--accent-color);
 font-size: 1.3rem;
 text-shadow: 1px 1px var(--dark-text);
}

.blog-card h3 a:hover {
 color: var(--secondary-color);
}

.view-all-cta {
 text-align: center;
 margin-top: 4rem;
}

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

.faq-accordion {
 margin-top: 3rem;
 max-width: 900px;
 margin-left: auto;
 margin-right: auto;
}

.accordion-item {
 margin-bottom: 1.5rem;
 overflow: hidden;
 background-color: var(--element-bg);
 border: 2px solid var(--primary-color);
 box-shadow: 4px 4px 0 var(--secondary-color);
 border-radius: 6px;
}

.accordion-header {
 background-color: var(--primary-color);
 color: var(--dark-text);
 font-family: var(--font-heading);
 padding: 1rem 1.5rem;
 width: 100%;
 text-align: left;
 border: none;
 cursor: pointer;
 font-size: 1.1rem;
 transition: background-color 0.3s ease;
 display: flex;
 justify-content: space-between;
 align-items: center;
 position: relative;
 padding-right: 3rem; /* Space for arrow */
}

.accordion-header::after {
 content: '+';
 font-family: var(--font-heading);
 font-size: 1.5rem;
 position: absolute;
 right: 1.5rem;
 top: 50%;
 transform: translateY(-50%);
 transition: transform 0.3s ease;
}

.accordion-header.active::after {
 content: '-';
 transform: translateY(-50%) rotate(180deg);
}

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

.accordion-content {
 background-color: var(--element-bg);
 color: var(--gray-text);
 padding: 0 1.5rem;
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content.active {
 max-height: 200px; /* Adjust based on expected content height */
 padding: 1rem 1.5rem;
 border-top: 1px dashed var(--border-color);
}

/* Call to Action Section */
.cta-section {
 background-color: var(--primary-color);
 text-align: center;
 padding: 5rem 0;
 border-top: 3px solid var(--accent-color);
 border-bottom: 3px solid var(--secondary-color);
 color: var(--dark-text);
}

.cta-section p {
 font-family: var(--font-body);
 font-size: 1.3rem;
 margin-bottom: 1rem;
 color: var(--dark-text);
}

.cta-section h2 {
 font-size: 3rem;
 color: var(--dark-text);
 text-shadow: 3px 3px var(--light-text);
 margin-bottom: 2rem;
}

.cta-section .cta-button {
 background-color: var(--dark-bg);
 color: var(--accent-color);
 border-color: var(--secondary-color);
 box-shadow: 4px 4px 0 var(--primary-color);
}

.cta-section .cta-button:hover {
 background-color: var(--dark-text);
 color: var(--primary-color);
 border-color: var(--accent-color);
 box-shadow: -4px -4px 0 var(--secondary-color);
}

/* Footer */
.main-footer {
 background-color: var(--element-bg);
 color: var(--gray-text);
 padding: 4rem 0 1rem;
 border-top: 3px solid var(--primary-color);
 font-family: var(--font-body);
}

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

.footer-col h3 {
 color: var(--secondary-color);
 font-size: 1.3rem;
 margin-bottom: 1.5rem;
 text-shadow: 2px 2px var(--dark-text);
}

.footer-col ul {
 padding: 0;
}

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

.footer-col ul li a {
 color: var(--gray-text);
 transition: color 0.3s ease;
}

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

.footer-col.brand-info h3 {
 color: var(--accent-color);
 font-size: 1.8rem;
 text-shadow: 2px 2px var(--primary-color);
 margin-bottom: 1rem;
}

.footer-col.brand-info p {
 font-size: 0.9rem;
}

.footer-bottom {
 text-align: center;
 padding-top: 2rem;
 border-top: 1px dashed var(--border-color);
 font-size: 0.8rem;
 color: var(--border-color);
}

.footer-bottom .retro-text {
 color: var(--primary-color);
 font-family: var(--font-heading);
 font-size: 0.7rem;
 text-shadow: 1px 1px var(--dark-text);
}

/* Pixel art decoration for brand info */
.pixel-art-decor {
 width: 60px;
 height: 60px;
 margin-top: 1rem;
 background-color: var(--primary-color);
 position: relative;
 clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0, 10% 10%, 10% 90%, 90% 90%, 90% 10%, 10% 10%);
 box-shadow: 5px 5px 0 var(--secondary-color);
}
.pixel-art-decor::before {
 content: '';
 position: absolute;
 top: 10%;
 left: 10%;
 width: 80%;
 height: 80%;
 background-color: var(--accent-color);
 clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
}

/* Form Styling */
.contact-form {
 background-color: var(--element-bg);
 border: 3px solid var(--secondary-color);
 border-radius: 8px;
 padding: 2.5rem;
 box-shadow: 8px 8px 0 var(--primary-color);
 max-width: 600px;
 margin: 3rem auto;
 position: relative;
 overflow: hidden;
}

.contact-form::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-image:
 radial-gradient(var(--dark-bg) 20%, transparent 21%),
 radial-gradient(var(--dark-bg) 20%, transparent 21%);
 background-size: 15px 15px;
 background-position: 0 0, 7.5px 7.5px;
 opacity: 0.1;
 z-index: 0;
}

.contact-form label {
 display: block;
 margin-bottom: 0.5rem;
 color: var(--accent-color);
 font-family: var(--font-heading);
 font-size: 0.9rem;
 text-shadow: 1px 1px var(--dark-text);
 position: relative;
 z-index: 1;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
 width: 100%;
 padding: 0.8rem;
 margin-bottom: 1.5rem;
 background-color: var(--dark-bg);
 border: 2px solid var(--border-color);
 border-radius: 4px;
 color: var(--light-text);
 font-family: var(--font-body);
 font-size: 1rem;
 transition: border-color 0.3s ease, box-shadow 0.3s ease;
 position: relative;
 z-index: 1;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
 border-color: var(--primary-color);
 box-shadow: 0 0 0 2px var(--secondary-color);
 outline: none;
}

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

.contact-form button[type="submit"] {
 width: 100%;
 background-color: var(--accent-color);
 color: var(--dark-text);
 font-family: var(--font-heading);
 padding: 1rem 1.5rem;
 border: 3px solid var(--primary-color);
 border-radius: 8px;
 font-size: 1.2rem;
 cursor: pointer;
 transition: all 0.3s ease;
 box-shadow: 4px 4px 0 var(--secondary-color);
 text-transform: uppercase;
 position: relative;
 z-index: 1;
}

.contact-form button[type="submit"]:hover {
 background-color: var(--primary-color);
 color: var(--light-text);
 border-color: var(--accent-color);
 box-shadow: -4px -4px 0 var(--secondary-color);
 transform: translateY(-2px);
}

/* About Page Specific Styles */
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-top: 3rem;
}

.team-member-card {
 text-align: center;
 background-color: var(--element-bg);
 border: 3px solid var(--primary-color);
 border-radius: 8px;
 padding: 1.5rem;
 box-shadow: 6px 6px 0 var(--secondary-color);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
 transform: translateY(-5px);
 box-shadow: 8px 8px 0 var(--secondary-color);
}

.team-member-card img {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1rem;
 border: 3px solid var(--accent-color);
 box-shadow: 0 0 0 5px var(--primary-color);
}

.team-member-card h3 {
 color: var(--accent-color);
 font-size: 1.2rem;
 text-shadow: 1px 1px var(--dark-text);
 margin-bottom: 0.5rem;
}

.team-member-card p {
 color: var(--gray-text);
 font-size: 0.9rem;
 margin-bottom: 0.5rem;
}

/* Services Page Specific Styles */
.service-cards-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 3rem;
 margin-top: 3rem;
}

.service-card {
 text-align: center;
 position: relative;
 overflow: hidden;
}

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

.service-card .icon {
 font-size: 3rem;
 color: var(--primary-color);
 margin-bottom: 1rem;
 text-shadow: 3px 3px var(--dark-text);
}

.process-section {
 background-color: var(--dark-bg);
 padding: 5rem 0;
}

.process-grid {
 display: flex;
 justify-content: center;
 gap: 2rem;
 flex-wrap: wrap;
 margin-top: 3rem;
 position: relative;
}

.process-grid::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 0;
 right: 0;
 height: 2px;
 background-color: var(--accent-color);
 z-index: 0;
 display: none; /* Hide line on mobile */
}

.process-step {
 background-color: var(--element-bg);
 border: 3px solid var(--primary-color);
 border-radius: 8px;
 padding: 1.5rem;
 box-shadow: 6px 6px 0 var(--secondary-color);
 text-align: center;
 flex: 1;
 min-width: 250px;
 max-width: 300px;
 position: relative;
 z-index: 1;
 margin-bottom: 2rem;
}

.process-step .step-number {
 display: inline-block;
 width: 50px;
 height: 50px;
 line-height: 50px;
 border-radius: 50%;
 background-color: var(--accent-color);
 color: var(--dark-text);
 font-family: var(--font-heading);
 font-size: 1.5rem;
 border: 3px solid var(--primary-color);
 margin-bottom: 1rem;
 box-shadow: 3px 3px 0 var(--secondary-color);
}

.process-step h4 {
 color: var(--secondary-color);
 font-size: 1.1rem;
 margin-bottom: 0.8rem;
 text-shadow: 1px 1px var(--dark-text);
}

/* Blog List and Post Styles */
.blog-list-section {
 background-color: var(--dark-bg);
}

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

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

.blog-post-header h1 {
 font-size: 2.8rem;
 color: var(--accent-color);
 text-shadow: 3px 3px var(--primary-color);
}

.blog-post-meta {
 font-size: 0.9rem;
 color: var(--gray-text);
 margin-top: 1rem;
 border-top: 1px dashed var(--border-color);
 padding-top: 1rem;
 display: flex;
 justify-content: center;
 gap: 1.5rem;
 flex-wrap: wrap;
}

.blog-post-meta span {
 display: flex;
 align-items: center;
 gap: 0.5rem;
}

.blog-content {
 max-width: 800px;
 margin: 0 auto;
 background-color: var(--element-bg);
 border: 3px solid var(--primary-color);
 border-radius: 8px;
 padding: 2.5rem;
 box-shadow: 8px 8px 0 var(--secondary-color);
 margin-bottom: 3rem;
}

.blog-content h2, .blog-content h3 {
 color: var(--secondary-color);
 font-size: 1.8rem;
 text-shadow: 2px 2px var(--dark-text);
 margin-top: 2rem;
 margin-bottom: 1rem;
}

.blog-content p {
 color: var(--light-text);
 margin-bottom: 1.5rem;
}

.blog-content ul {
 list-style: disc;
 margin-left: 1.5rem;
 margin-bottom: 1.5rem;
 color: var(--light-text);
}

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

.blog-content strong {
 color: var(--accent-color);
}

.blog-author-box {
 display: flex;
 align-items: center;
 gap: 1.5rem;
 background-color: var(--dark-bg);
 border: 2px solid var(--border-color);
 border-radius: 8px;
 padding: 1.5rem;
 margin-top: 3rem;
 box-shadow: 4px 4px 0 var(--primary-color);
}

.blog-author-box img {
 width: 90px;
 height: 90px;
 border-radius: 50%;
 object-fit: cover;
 border: 3px solid var(--accent-color);
}

.blog-author-box h4 {
 color: var(--secondary-color);
 margin-bottom: 0.5rem;
 font-size: 1.2rem;
 text-shadow: 1px 1px var(--dark-text);
}

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

.related-posts {
 background-color: var(--element-bg);
 border: 3px solid var(--accent-color);
 border-radius: 8px;
 padding: 2rem;
 box-shadow: 8px 8px 0 var(--secondary-color);
 margin-top: 4rem;
}

.related-posts h3 {
 color: var(--primary-color);
 text-shadow: 2px 2px var(--dark-text);
 margin-bottom: 1.5rem;
}

.related-posts ul li {
 margin-bottom: 1rem;
}

.related-posts ul li a {
 color: var(--light-text);
 font-size: 1.1rem;
 display: block;
 padding: 0.5rem;
 border-bottom: 1px dashed var(--border-color);
}

.related-posts ul li a:hover {
 color: var(--accent-color);
 background-color: rgba(0, 0, 0, 0.2);
}

/* Gallery Styles */
.gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.5rem;
 margin-top: 3rem;
}

.gallery-item {
 position: relative;
 overflow: hidden;
 border: 3px solid var(--primary-color);
 border-radius: 6px;
 box-shadow: 5px 5px 0 var(--secondary-color);
 cursor: pointer;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
 transform: translateY(-5px);
 box-shadow: 8px 8px 0 var(--secondary-color);
}

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

.gallery-item:hover img {
 transform: scale(1.05);
}

.gallery-item .overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.7);
 display: flex;
 justify-content: center;
 align-items: center;
 opacity: 0;
 transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
 opacity: 1;
}

.gallery-item .overlay span {
 color: var(--accent-color);
 font-size: 2rem;
 font-family: var(--font-heading);
 text-shadow: 2px 2px var(--primary-color);
}

/* Lightbox styles (basic) */
.lightbox {
 display: none;
 position: fixed;
 z-index: 2000;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.9);
 overflow: auto;
 align-items: center;
 justify-content: center;
}

.lightbox-content {
 margin: auto;
 display: block;
 max-width: 90%;
 max-height: 90%;
 border: 5px solid var(--primary-color);
 box-shadow: 0 0 20px var(--secondary-color);
 background-color: var(--dark-bg);
 padding: 10px;
}

.lightbox-close {
 position: absolute;
 top: 15px;
 right: 35px;
 color: var(--light-text);
 font-size: 40px;
 font-weight: bold;
 transition: 0.3s;
 cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
 color: var(--primary-color);
 text-decoration: none;
 cursor: pointer;
}

/* Contact Page Specific Styles */
.contact-info-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
 margin-top: 3rem;
}

.contact-detail-card {
 background-color: var(--element-bg);
 border: 3px solid var(--primary-color);
 border-radius: 8px;
 padding: 1.5rem;
 box-shadow: 6px 6px 0 var(--accent-color);
 text-align: center;
}

.contact-detail-card span {
 display: block;
 font-size: 2.5rem;
 margin-bottom: 1rem;
 color: var(--secondary-color);
 text-shadow: 2px 2px var(--dark-text);
}

.contact-detail-card h3 {
 color: var(--accent-color);
 font-size: 1.1rem;
 margin-bottom: 0.8rem;
 text-shadow: 1px 1px var(--dark-text);
}

.contact-detail-card p {
 color: var(--gray-text);
 font-size: 0.95rem;
 margin-bottom: 0.5rem;
}

.contact-detail-card a {
 color: var(--light-text);
 font-family: var(--font-body);
}

.contact-detail-card a:hover {
 color: var(--primary-color);
 text-decoration: underline;
}

.map-container {
 margin-top: 4rem;
 border: 5px solid var(--primary-color);
 box-shadow: 10px 10px 0 var(--secondary-color);
 border-radius: 8px;
 overflow: hidden;
}

.map-container iframe {
 width: 100%;
 height: 450px;
 display: block;
}

/* Legal Pages Styling */
.legal-content {
 max-width: 900px;
 margin: 0 auto;
 background-color: var(--element-bg);
 border: 3px solid var(--primary-color);
 border-radius: 8px;
 padding: 2.5rem;
 box-shadow: 8px 8px 0 var(--secondary-color);
 margin-bottom: 3rem;
}

.legal-content h1 {
 text-align: center;
 color: var(--accent-color);
 text-shadow: 3px 3px var(--primary-color);
 margin-bottom: 2rem;
}

.legal-content h2, .legal-content h3 {
 color: var(--secondary-color);
 font-size: 1.8rem;
 text-shadow: 2px 2px var(--dark-text);
 margin-top: 2rem;
 margin-bottom: 1rem;
}

.legal-content p {
 color: var(--light-text);
 margin-bottom: 1.5rem;
}

.legal-content ul {
 list-style: disc;
 margin-left: 1.5rem;
 margin-bottom: 1.5rem;
 color: var(--light-text);
}

.legal-content li {
 margin-bottom: 0.5rem;
}

.legal-content strong {
 color: var(--accent-color);
}

/* Thank You Page */
.thanks-content {
 text-align: center;
 padding: 5rem 1.5rem;
 background-color: var(--element-bg);
 border: 5px solid var(--primary-color);
 border-radius: 12px;
 max-width: 800px;
 margin: 5rem auto;
 box-shadow: 15px 15px 0 var(--secondary-color), 20px 20px 0 var(--accent-color);
}

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

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

.thanks-content .cta-button {
 margin-top: 2rem;
}

/* 404 Page */
.error-content {
 text-align: center;
 padding: 5rem 1.5rem;
 background-color: var(--element-bg);
 border: 5px solid var(--primary-color);
 border-radius: 12px;
 max-width: 900px;
 margin: 5rem auto;
 box-shadow: 15px 15px 0 var(--secondary-color), 20px 20px 0 var(--accent-color);
}

.error-content h1 {
 font-size: 6rem;
 color: var(--primary-color);
 text-shadow: 6px 6px var(--dark-text);
 margin-bottom: 1rem;
 font-family: var(--font-heading);
}

.error-content h2 {
 font-size: 2.5rem;
 color: var(--accent-color);
 text-shadow: 3px 3px var(--secondary-color);
 margin-bottom: 2rem;
}

.error-content p {
 font-size: 1.2rem;
 color: var(--light-text);
 margin-bottom: 2.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
 .container {
 padding: 0 1rem;
 }
 .hero-text-content h1 {
 font-size: 3rem;
 }
 .testimonials-grid, .blog-grid, .service-cards-grid, .team-grid, .gallery-grid, .contact-info-grid {
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 }
 .process-grid::before {
 display: none; /* Hide line on tablet */
 }
 .process-step {
 margin-bottom: 1rem; /* Adjust spacing for stacked steps */
 }
}

@media (max-width: 768px) {
 h1 {
 font-size: 2.2rem;
 }
 h2 {
 font-size: 2rem;
 }
 h2 span {
 font-size: 1rem;
 }
 .hero-content {
 flex-direction: column;
 text-align: center;
 }
 .hero-text-content {
 order: 2;
 }
 .hero-image-container {
 order: 1;
 margin-bottom: 2rem;
 }
 .hero-text-content h1 {
 font-size: 2.8rem;
 text-align: center;
 }
 .hero-text-content p {
 font-size: 1rem;
 }
 .about-content {
 flex-direction: column;
 }
 .about-text {
 text-align: center;
 }
 .about-text h2 {
 text-align: center;
 }
 .footer-grid {
 grid-template-columns: 1fr;
 text-align: center;
 }
 .footer-col.brand-info, .footer-col.footer-links, .footer-col.footer-legal, .footer-col.contact-info {
 border-bottom: 1px dotted var(--border-color);
 padding-bottom: 1.5rem;
 }
 .footer-col.contact-info {
 border-bottom: none;
 }
 .pixel-art-decor {
 margin-left: auto;
 margin-right: auto;
 }
 .blog-post-meta {
 flex-direction: column;
 align-items: center;
 gap: 0.8rem;
 }
 .error-content h1 {
 font-size: 4rem;
 }
 .error-content h2 {
 font-size: 1.8rem;
 }
 .thanks-content h1 {
 font-size: 2.2rem;
 }
 .contact-form {
 padding: 1.5rem;
 }
 .legal-content {
 padding: 1.5rem;
 }
}

@media (max-width: 480px) {
 h1 {
 font-size: 2rem;
 }
 h2 {
 font-size: 1.8rem;
 }
 h3 {
 font-size: 1.3rem;
 }
 .hero-text-content h1 {
 font-size: 2.2rem;
 }
 .cta-button {
 padding: 0.8rem 1.5rem;
 font-size: 1rem;
 }
}