/* Miller-Lange LLC Website - Main Stylesheet */

/* CSS Custom Properties (Variables) */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --text-color: #333333;
  --background-color: #ffffff;
  --accent-color: #e74c3c;
  --font-family: 'Arial', sans-serif;
  --max-width: 1200px;
  --border-radius: 4px;
  --box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  --light-gray: #666666;  /* Improved contrast for secondary text */
  --medium-gray: #555555; /* Better contrast for body text */
}

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

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

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: var(--border-radius);
  z-index: 1000;
  font-weight: 500;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

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

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
}

.logo h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.logo a:hover {
  color: inherit;
  opacity: 0.9;
}

/* Navigation Styles */
nav {
  position: relative;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  display: block;
  transition: all 0.3s ease;
  border-radius: var(--border-radius);
  font-weight: 500;
  position: relative;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
  transform: translateY(-1px);
}

nav a:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

nav a.active {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

nav a.active::after {
  display: none;
}

/* Main Content */
main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

/* Footer Styles */
footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
}

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

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Breadcrumb Navigation */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.breadcrumb a {
  display: inline;
  padding: 0;
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 0;
  font-weight: normal;
}

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

.breadcrumb .separator {
  margin: 0 0.5rem;
  color: var(--medium-gray);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url('../images/Logo-Miller-Lange-FINAL-SIZE-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: luminosity;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.hero h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--medium-gray);
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
}

.cta-button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cta-button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Introduction Section */
.intro {
  margin-bottom: 3rem;
}

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

.intro-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.intro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.intro-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.intro-item p {
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.intro-link {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 2px solid var(--secondary-color);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.intro-link:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

/* Services Preview Section */
.services-preview {
  margin-bottom: 3rem;
  background: #ffffff;
  padding: 3rem 0;
  border-radius: var(--border-radius);
  border-top: 1px solid #e9ecef;
}

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

.services-header h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 300;
}

.services-header p {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-preview {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--secondary-color);
}

.service-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.service-preview h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-preview p {
  color: var(--light-gray);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 2rem;
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.cta-button.secondary:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Responsive Design - Mobile First */
@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 1rem 0;
    gap: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  nav ul.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  nav li {
    width: 100%;
  }
  
  nav a {
    padding: 1rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  nav a:last-child {
    border-bottom: none;
  }
  
  nav a.active::after {
    display: none;
  }
  
  nav a.active {
    background-color: var(--secondary-color);
    border-left: 4px solid white;
  }
  
  nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: none;
  }
  
  .header-content {
    flex-wrap: wrap;
    position: relative;
  }
  
  .logo {
    gap: 0.5rem;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .logo h1 {
    font-size: 1.3rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .intro-item {
    padding: 1.5rem;
  }
  
  .intro-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .services-preview {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  
  .services-header {
    margin-bottom: 2rem;
  }
  
  .services-header h2 {
    font-size: 1.8rem;
  }
  
  .services-header p {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-preview {
    padding: 1.5rem;
  }
  
  .service-preview h3 {
    font-size: 1.2rem;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* About Page Styles */
.page-header {
  text-align: center;
  padding: 3rem 0 2rem 0;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 3rem;
}

.page-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 300;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-color);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

.about-section {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.values-section {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.values-section h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

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

.value-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.value-item h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.commitment-section {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.commitment-section h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.commitment-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.commitment-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.commitment-list li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.commitment-list li::before {
  content: "✓";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* About Page Responsive Design */
@media (max-width: 767px) {
  .page-header {
    padding: 2rem 0 1.5rem 0;
    margin-bottom: 2rem;
  }
  
  .page-header h2 {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1.1rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .about-section {
    padding: 2rem;
  }
  
  .values-section {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .values-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-item {
    padding: 1.5rem;
  }
  
  .commitment-section {
    padding: 2rem;
  }
  
  .commitment-section h3 {
    font-size: 1.5rem;
  }
}

/* Tablet Styles for About Page */
@media (min-width: 768px) and (max-width: 1023px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-header h2 {
    font-size: 2.2rem;
  }
}
/* Services Page Styles */
.services-content {
  max-width: 1000px;
  margin: 0 auto;
}

.services-intro {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
  text-align: center;
}

.services-intro p {
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.service-item {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--secondary-color);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

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

.service-item > p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

.service-features li {
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.service-features li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

.service-approach {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.service-approach h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

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

.approach-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.approach-item h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.approach-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-cta {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.service-cta h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.service-cta p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Page Responsive Design */
@media (max-width: 767px) {
  .services-intro {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .services-intro p {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .service-item {
    padding: 2rem;
  }
  
  .service-item h3 {
    font-size: 1.3rem;
  }
  
  .service-approach {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .service-approach h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .approach-item {
    padding: 1.5rem;
  }
  
  .service-cta {
    padding: 2rem;
  }
  
  .service-cta h3 {
    font-size: 1.5rem;
  }
  
  .service-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* Tablet Styles for Services Page */
@media (min-width: 768px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-approach h3 {
    font-size: 1.6rem;
  }
  
  .service-cta h3 {
    font-size: 1.6rem;
  }
}

/* Large Desktop Styles for Services Page */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Contact Page Styles */
.contact-content {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-intro {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
  text-align: center;
}

.contact-intro p {
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-info {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.primary-contact {
  border-left: 4px solid var(--secondary-color);
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
}

.contact-method h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-value {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.contact-link:hover {
  color: #2980b9;
  text-decoration: underline;
}

.contact-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 2px;
}

.contact-value address {
  font-style: normal;
  line-height: 1.5;
  color: var(--text-color);
}

.contact-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.contact-form-section {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-section h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.contact-form-info p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.business-hours {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
}

.business-hours h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #555;
}

.hours-list li:last-child {
  border-bottom: none;
}

.day {
  font-weight: 500;
  color: var(--text-color);
}

.time {
  font-weight: 400;
  color: #666;
}

.hours-note {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}

.contact-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.contact-cta h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.contact-cta p {
  color: #ecf0f1;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-button.primary {
  background-color: var(--secondary-color);
  color: white;
}

.cta-button.primary:hover {
  background-color: #2980b9;
}

.hero .cta-button.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero .cta-button.secondary:hover {
  background-color: white;
  color: var(--primary-color);
}

/* Contact Page Responsive Design */
@media (max-width: 767px) {
  .contact-intro {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .contact-intro p {
    font-size: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .contact-info,
  .contact-form-section {
    padding: 2rem;
  }
  
  .contact-info h3,
  .contact-form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-methods {
    gap: 1.5rem;
  }
  
  .contact-method {
    padding: 1.25rem;
  }
  
  .contact-method h4 {
    font-size: 1.1rem;
  }
  
  .contact-value {
    font-size: 1rem;
  }
  
  .business-hours {
    padding: 1.5rem;
  }
  
  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .contact-cta {
    padding: 2rem;
  }
  
  .contact-cta h3 {
    font-size: 1.5rem;
  }
  
  .contact-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

/* Tablet Styles for Contact Page */
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-info h3,
  .contact-form-section h3 {
    font-size: 1.6rem;
  }
  
  .contact-cta h3 {
    font-size: 1.6rem;
  }
}

/* Large Desktop Styles for Contact Page */
@media (min-width: 1200px) {
  .contact-grid {
    gap: 4rem;
  }
  
  .contact-info,
  .contact-form-section {
    padding: 3rem;
  }
}

/* Privacy Policy Page Styles */
.privacy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-section {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.5rem;
}

.privacy-section h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

.privacy-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.privacy-section li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-section li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

.privacy-section strong {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary-color);
  margin: 1.5rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #2980b9;
}

.last-updated {
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Privacy Policy Responsive Design */
@media (max-width: 767px) {
  .privacy-section {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .privacy-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }
  
  .privacy-section h4 {
    font-size: 1.1rem;
    margin: 1.25rem 0 0.75rem 0;
  }
  
  .privacy-section p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .privacy-section ul {
    margin: 0.75rem 0 1.25rem 0;
  }
  
  .privacy-section li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
  }
  
  .contact-info {
    padding: 1.25rem;
    margin: 1.25rem 0;
  }
}

/* Navigation Dropdown */
nav li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
}

nav li.has-dropdown:hover > a::after,
nav li.has-dropdown.open > a::after {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  z-index: 1001;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

nav li.has-dropdown:hover .nav-dropdown {
  display: block;
}

nav li.has-dropdown.open .nav-dropdown {
  display: block;
}

.nav-dropdown li {
  width: 100%;
}

.nav-dropdown a {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
  border-radius: 0;
}

.nav-dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--secondary-color);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.product-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-card.coming-soon {
  border-left-color: #95a5a6;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.badge-coming-soon {
  background-color: #f39c12;
  color: white;
}

.badge-available {
  background-color: #27ae60;
  color: white;
}

/* Pricing Table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.pricing-card.featured {
  border-top-color: var(--accent-color);
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.pricing-card h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.pricing-amount span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
}

.pricing-seats {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "\2713";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.pricing-features li.unavailable {
  color: #bbb;
}

.pricing-features li.unavailable::before {
  content: "\2014";
  color: #bbb;
}

/* Code Blocks */
.code-block {
  background: #1e1e2e;
  color: #cdd6f4;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  overflow-x: auto;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 1.5rem 0;
  box-shadow: var(--box-shadow);
  white-space: pre-wrap;
}

.code-block code {
  color: inherit;
  background: none;
}

.code-block .code-comment {
  color: #6c7086;
}

.code-block .code-key {
  color: #89b4fa;
}

.code-block .code-string {
  color: #a6e3a1;
}

.code-block .code-prompt {
  color: #f9e2af;
  font-weight: 600;
}

.code-block .code-response {
  color: #cba6f7;
  font-weight: 600;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.feature-card h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Platform Logos */
.platform-section {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 3rem;
}

.platform-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.platform-logos span {
  font-size: 1.1rem;
  color: var(--light-gray);
  font-weight: 500;
}

/* Documentation Styles */
.docs-content {
  max-width: 800px;
  margin: 0 auto;
}

.docs-section {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.docs-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.5rem;
}

.docs-section h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

.docs-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.docs-section ol,
.docs-section ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.docs-section li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.docs-section ol {
  counter-reset: docs-counter;
}

.docs-section ol li {
  counter-increment: docs-counter;
}

.docs-section ol li::before {
  content: counter(docs-counter) ".";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.docs-section ul li::before {
  content: "\2022";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* FAQ Accordion */
.faq-section {
  margin-bottom: 2rem;
}

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

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  font-family: var(--font-family);
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: #555;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer a {
  color: var(--secondary-color);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Products/Docs/FAQ Mobile Responsive */
@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .feature-card {
    padding: 1.5rem;
  }

  .docs-section {
    padding: 2rem;
  }

  .docs-section h3 {
    font-size: 1.3rem;
  }

  nav li.has-dropdown > a::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    display: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 0;
    padding: 0;
  }

  nav li.has-dropdown.open .nav-dropdown {
    display: block;
  }

  nav li.has-dropdown:hover .nav-dropdown {
    display: none;
  }

  nav li.has-dropdown.open:hover .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    padding-left: 3rem;
    font-size: 0.9rem;
    min-height: 44px;
  }
}

/* Error Page Styles */
.error-section {
  text-align: center;
  padding: 4rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.error-content p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

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

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

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

.helpful-links {
  margin-top: 3rem;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.helpful-links h2 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.helpful-links ul {
  list-style: none;
}

.helpful-links li {
  margin-bottom: 0.5rem;
}

.helpful-links a {
  color: var(--secondary-color);
  text-decoration: none;
  padding: 0.5rem;
  display: block;
  border-radius: var(--border-radius);
  transition: background-color 0.3s ease;
}

.helpful-links a:hover {
  background-color: #f8f9fa;
  text-decoration: underline;
}

/* Graceful Degradation Styles */
/* These styles ensure the site remains functional without CSS */
.no-css-fallback {
  display: none;
}

/* If CSS fails to load, this will be visible */
noscript .no-css-message {
  display: block;
  background-color: #f0f0f0;
  padding: 1rem;
  margin: 1rem;
  border: 1px solid #ccc;
  text-align: center;
}

/* Mobile Error Page Styles */
@media (max-width: 768px) {
  .error-content h1 {
    font-size: 2rem;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .helpful-links {
    text-align: center;
  }
}