        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

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

        /* Header */
        header {
          background: linear-gradient(135deg, #09265e 0%, #149cda 100%);
          color: white;
          padding: 1rem 0;
          position: fixed;
          width: 100%;
          top: 0;
          z-index: 1000;
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0 2rem;
        }

        .logo {
          display: flex;
          align-items: center;
          gap: 10px;
        }

        .logo-placeholder {
          width: 50px;
          height: 50px;
          background: rgba(255, 255, 255, 0.2);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 2px dashed rgba(255, 255, 255, 0.5);
          font-size: 12px;
          margin-right: 16px;
        }

        .logo h1 {
          font-size: 1.8rem;
          font-weight: 700;
        }

        .contact-info {
          background: #fff;
          border-radius: 0.75rem;
          box-shadow: 0 2px 8px rgba(0,0,0,0.08);
          padding: 0.75rem 1.25rem;
          display: flex;
          gap: 1.5rem;
          align-items: center;
        }

        .contact-item {
          display: flex;
          align-items: center;
          gap: 8px;
          font-size: 0.9rem;
        }

        .contact-icon {
          width: 20px;
          height: 20px;
          background: #f6a31b;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 12px;
        }

        /* Hero Section */
        .hero {
          background: linear-gradient(135deg, rgba(9, 38, 94, 0.9) 0%, rgba(20, 156, 218, 0.8) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="cars" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="%23f8f9fa" opacity="0.1"/><circle cx="100" cy="100" r="30" fill="%23149cda" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cars)"/></svg>') center/cover;
          min-height: 100vh;
          display: flex;
          align-items: center;
          color: white;
          text-align: center;
          position: relative;
        }

        .hero-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 2rem;
          z-index: 2;
        }

        .hero h2 {
          font-size: 3.5rem;
          font-weight: 700;
          margin-bottom: 1rem;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
          animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
          font-size: 1.4rem;
          margin-bottom: 1rem;
          color: #f6a31b;
          font-weight: 600;
          animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-description {
          font-size: 1.2rem;
          margin-bottom: 2rem;
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
          animation: fadeInUp 1s ease-out 0.4s both;
        }

        .cta-button {
          display: inline-block;
          background: linear-gradient(135deg, #f6a31b 0%, #ffc107 100%);
          color: #09265e;
          padding: 1rem 2.5rem;
          text-decoration: none;
          border-radius: 50px;
          font-weight: 700;
          font-size: 1.1rem;
          transition: all 0.3s ease;
          box-shadow: 0 8px 25px rgba(246, 163, 27, 0.3);
          animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
          transform: translateY(-3px);
          box-shadow: 0 12px 35px rgba(246, 163, 27, 0.4);
          background: linear-gradient(135deg, #ffc107 0%, #f6a31b 100%);
        }

        /* Services Section */
        .services {
          padding: 5rem 0;
          background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
        }

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

        .section-title {
          text-align: center;
          font-size: 2.5rem;
          color: #09265e;
          margin-bottom: 1rem;
          font-weight: 700;
        }

        .section-subtitle {
          text-align: center;
          font-size: 1.2rem;
          color: #149cda;
          margin-bottom: 3rem;
          font-weight: 600;
        }

        .service-card {
          background: white;
          border-radius: 20px;
          padding: 2.5rem;
          margin-bottom: 2rem;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
          border: 2px solid transparent;
          position: relative;
          overflow: hidden;
        }

        .service-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 4px;
          background: linear-gradient(90deg, #09265e, #149cda, #f6a31b);
          transition: left 0.5s ease;
        }

        .service-card:hover::before {
          left: 0;
        }

        .service-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
          border-color: #149cda;
        }

        .service-header {
          text-align: center;
          margin-bottom: 2rem;
        }

        .service-icon {
          width: 80px;
          height: 80px;
          background: linear-gradient(135deg, #149cda, #09265e);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 1rem;
          color: white;
          font-size: 2rem;
        }

        .service-title {
          font-size: 2rem;
          color: #09265e;
          font-weight: 700;
          margin-bottom: 0.5rem;
        }

        .service-description {
          color: #666;
          font-size: 1.1rem;
        }

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

        .price-item {
          background: linear-gradient(135deg, #09265e 0%, #149cda 100%);
          color: white;
          padding: 1.5rem;
          border-radius: 15px;
          text-align: center;
          position: relative;
          overflow: hidden;
        }

        .price-item::before {
          content: '';
          position: absolute;
          top: -50%;
          right: -50%;
          width: 100%;
          height: 100%;
          background: rgba(246, 163, 27, 0.1);
          border-radius: 50%;
          transition: all 0.3s ease;
        }

        .price-item:hover::before {
          transform: scale(1.5);
        }

        .price-vehicle {
          font-size: 1.2rem;
          font-weight: 600;
          margin-bottom: 0.5rem;
          position: relative;
          z-index: 2;
        }

        .price-amount {
          font-size: 2rem;
          font-weight: 700;
          color: #f6a31b;
          position: relative;
          z-index: 2;
        }

        /* Coverage Section */
        .coverage {
          padding: 5rem 0;
          background: white;
        }

        .coverage-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 3rem;
          align-items: center;
        }

        .coverage-info h3 {
          font-size: 2rem;
          color: #09265e;
          margin-bottom: 1rem;
          font-weight: 700;
        }

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

        .coverage-list li {
          padding: 0.8rem 0;
          border-bottom: 1px solid #eee;
          font-size: 1.1rem;
          position: relative;
          padding-left: 2rem;
        }

        .coverage-list li::before {
          content: '📍';
          position: absolute;
          left: 0;
          color: #149cda;
        }

        .schedule-info {
          background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
          border-radius: 20px;
          padding: 2rem;
        }

        .schedule-info h4 {
          color: #09265e;
          font-size: 1.5rem;
          margin-bottom: 1rem;
          font-weight: 700;
        }

        .schedule-time {
          font-size: 1.2rem;
          color: #149cda;
          font-weight: 600;
          margin-bottom: 1rem;
        }

        .appointment-button {
          background: linear-gradient(135deg, #149cda 0%, #09265e 100%);
          color: white;
          padding: 1rem 2rem;
          text-decoration: none;
          border-radius: 25px;
          display: inline-block;
          font-weight: 600;
          transition: all 0.3s ease;
          box-shadow: 0 5px 15px rgba(20, 156, 218, 0.3);
        }

        .appointment-button:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(20, 156, 218, 0.4);
        }

        /* Promotion Section */
        .promotion {
          padding: 5rem 0;
          background: linear-gradient(135deg, #f6a31b 0%, #ffc107 100%);
          text-align: center;
        }

        .promotion h3 {
          font-size: 2.5rem;
          color: #09265e;
          margin-bottom: 1rem;
          font-weight: 700;
        }

        .promotion-description {
          font-size: 1.3rem;
          color: #09265e;
          max-width: 800px;
          margin: 0 auto;
          line-height: 1.8;
        }

        /* Footer */
        footer {
          background: #09265e;
          color: white;
          padding: 3rem 0 2rem;
          text-align: center;
        }

        .footer-content {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 2rem;
        }

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

        .footer-section h4 {
          color: #f6a31b;
          font-size: 1.3rem;
          margin-bottom: 1rem;
          font-weight: 700;
        }

        .footer-section p,
        .footer-section a {
          color: #ccc;
          text-decoration: none;
          line-height: 1.8;
        }

        .footer-section a:hover {
          color: #f6a31b;
        }

        .footer-bottom {
          border-top: 1px solid #149cda;
          padding-top: 1rem;
          color: #ccc;
        }

        /* Animations */
        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(50px);
          }

          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
          .header-container {
            flex-direction: column;
            gap: 1rem;
          }

          .contact-info {
            flex-direction: column;
            gap: 0.5rem;
          }

          .hero h2 {
            font-size: 2.5rem;
          }

          .hero-subtitle {
            font-size: 1.2rem;
          }

          .hero-description {
            font-size: 1rem;
          }

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

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

          .footer-info {
            grid-template-columns: 1fr;
            text-align: left;
          }
        }