:root {
    --primary-color: #ff6b35;
    --primary-dark: #e54d1b;
    --secondary-color: #1a1a3e;
    --tertiary-color: #2d2d5f;
    --accent-color: #00d4ff;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navigation */
  .navbar {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  .logo-main {
    color: var(--primary-color);
  }
  
  .logo-text {
    color: var(--text-light);
  }
  
  /* Added hamburger menu button styles */
  .hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0;
    z-index: 1001;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .nav-menu a:not(.btn-primary):hover,
  .nav-menu a.active {
    color: var(--text-light);
  }
  
  .nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .nav-menu a:not(.btn-primary):hover::after,
  .nav-menu a.active::after {
    width: 100%;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    color: var(--text-light);
    padding: 120px 20px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
  }
  
  .btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
  }
  
  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
  }
  
  .btn-secondary:hover {
    background: var(--primary-color);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
  }
  
  /* Welcome Section */
  .welcome {
    padding: 80px 20px;
    background: var(--bg-light);
  }
  
  .welcome-content {
    display: flex;
    gap: 60px;
    align-items: center;
  }
  
  .welcome-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .welcome-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .welcome-text {
    flex: 1;
  }
  
  .welcome-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
  }
  
  .welcome-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
  }
  
  /* Services Preview */
  .services-preview {
    padding: 80px 20px;
    background: var(--text-light);
  }
  
  .services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
  }
  
  .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .service-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .service-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
  }
  
  .service-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .service-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
  }
  
  /* Page Header */
  .page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
  }
  
  .page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .page-header p {
    font-size: 1.2rem;
    color: var(--accent-color);
  }
  
  /* About Section */
  .about-section {
    padding: 80px 20px;
    background: var(--bg-light);
  }
  
  .about-content {
    display: flex;
    gap: 60px;
    align-items: center;
  }
  
  .about-image {
    flex: 1;
  }
  
  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
  }
  
  .about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
  }
  
  /* Why Choose Us */
  .why-choose {
    padding: 80px 20px;
    background: var(--text-light);
  }
  
  .why-choose h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
  }
  
  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .reason-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .reason-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .reason-card p {
    color: var(--text-muted);
    line-height: 1.8;
  }
  
  /* Values Section */
  .values {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    color: var(--text-light);
  }
  
  .values h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .value-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .value-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
  }
  
  .value-item h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .value-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
  }
  
  /* Services Detail */
  .services-detail {
    padding: 80px 20px;
    background: var(--bg-light);
  }
  
  .service-full {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
  }
  
  .service-full.alternate {
    flex-direction: row-reverse;
  }
  
  .service-image {
    flex: 1;
  }
  
  .service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .service-info {
    flex: 1;
  }
  
  .service-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
  }
  
  .service-info p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
  }
  
  .service-info h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-list {
    list-style: none;
    margin-bottom: 2rem;
  }
  
  .service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
  }
  
  .service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
  }
  
  /* Service Benefits */
  .service-benefits {
    padding: 80px 20px;
    background: var(--text-light);
  }
  
  .service-benefits h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .benefit-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .benefit-card p {
    color: var(--text-muted);
    line-height: 1.8;
  }
  
  /* Case Studies */
  .case-studies-section {
    padding: 80px 20px;
    background: var(--bg-light);
  }
  
  .case-study {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: var(--text-light);
    padding: 3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .case-study:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }
  
  .case-study.alternate {
    flex-direction: row-reverse;
  }
  
  .case-image {
    flex: 1;
  }
  
  .case-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .case-content {
    flex: 1;
  }
  
  .case-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .case-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .case-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
  }
  
  .case-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  
  .results-list {
    list-style: none;
    margin-bottom: 1rem;
  }
  
  .results-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
  }
  
  .results-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
  }
  
  /* CTA Section */
  .cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* Contact Section */
  .contact-section {
    padding: 80px 20px;
    background: var(--bg-light);
  }
  
  .contact-wrapper {
    display: flex;
    gap: 60px;
  }
  
  .contact-form {
    flex: 1;
  }
  
  .contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  }
  
  .form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
  }
  
  .form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    display: block;
  }
  
  .form-message.error {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    display: block;
  }
  
  .contact-info {
    flex: 1;
  }
  
  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
  }
  
  .info-block {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }
  
  .info-block h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .info-block p {
    color: var(--text-muted);
    line-height: 1.8;
  }
  
  .info-block a {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .info-block a:hover {
    text-decoration: underline;
  }
  
  /* Calendar Section - enhanced styles for better visibility */
  .calendar-section {
    padding: 80px 20px;
    background: var(--text-light);
  }
  
  .calendar-wrapper {
    max-width: 100%;
  }
  
  .calendar-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .calendar-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .calendar-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  /* Improved calendar container styling for full width display and better visibility */
  .calendar-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
  }
  
  .calendar-container iframe {
    width: 100%;
    height: 700px;
    border-radius: 8px;
    min-width: 900px;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 80px 20px;
    background: var(--text-light);
  }
  
  .testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
  }
  
  .client-name {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
  }
  
  /* Footer */
  .footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 20px 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
  }
  
  .footer-section p,
  .footer-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: var(--primary-color);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    /* Mobile navigation menu styles */
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background: var(--secondary-color);
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
  
    .nav-menu.active {
      max-height: 400px;
    }
  
    .nav-menu li {
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
  
    .nav-menu a {
      display: block;
      padding: 1rem 1.5rem;
      color: var(--text-light);
    }
  
    .nav-menu a::after {
      display: none;
    }
  
    .nav-menu a:not(.btn-primary):hover,
    .nav-menu a.active {
      background: rgba(255, 107, 53, 0.2);
      color: var(--primary-color);
    }
  
    .nav-menu .btn-primary {
      background: var(--primary-color);
      color: var(--text-light);
      margin: 1rem;
      text-align: center;
      border-radius: 4px;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero-subtitle {
      font-size: 1.2rem;
    }
  
    .welcome-content,
    .about-content,
    .service-full,
    .case-study,
    .contact-wrapper {
      flex-direction: column;
      gap: 30px;
    }
  
    .service-full.alternate,
    .case-study.alternate {
      flex-direction: column;
    }
  
    .services-grid,
    .reasons-grid,
    .values-grid,
    .testimonials-grid,
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  
    .page-header h1 {
      font-size: 2rem;
    }
  
    .welcome-text h2,
    .about-text h2,
    .service-info h2,
    .contact-form h2,
    .contact-info h2,
    .calendar-header h2 {
      font-size: 1.8rem;
    }
  
    .services-preview h2,
    .why-choose h2,
    .values h2,
    .service-benefits h2,
    .testimonials h2,
    .cta h2 {
      font-size: 1.8rem;
    }
  
    .hero-cta {
      flex-direction: column;
    }
  
    .btn-primary,
    .btn-secondary,
    .btn-outline {
      width: 100%;
      text-align: center;
    }
  
    /* Mobile calendar adjustments for week view */
    .calendar-container {
      padding: 1rem;
      overflow-x: auto;
    }
  
    .calendar-container iframe {
      min-height: 600px;
      min-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      font-size: 1rem;
    }
  
    .hero {
      padding: 60px 20px;
    }
  
    .hero h1 {
      font-size: 1.5rem;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  
    .hero-description {
      font-size: 0.9rem;
    }
  
    /* Small screen calendar adjustments */
    .calendar-container iframe {
      min-height: 500px;
      min-width: 100%;
    }
  }
  