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

    body {
      font-family: 'Inter', sans-serif;
      color: #222;
      background: #ffffff;
      line-height: 1.7;
      font-weight: 400;
    }

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

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 90%;
      max-width: 1400px;
      margin: 0 auto;
    }

    header {
      background: white;
      border-bottom: 1px solid #ececec;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 0;
      gap: 40px;
    }

    .logo img {
      width: 340px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    nav a {
      position: relative;
      transition: 0.3s ease;
    }

    nav a:hover {
      color: #b81224;
    }

    .portal-link {
      color: #b81224;
      font-weight: 600;
    }

    .hero {
      background: #f5f5f5;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      min-height: 720px;
      align-items: stretch;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 100px 80px 100px 0;
    }

    .hero-content h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 78px;
      line-height: 1;
      font-weight: 500;
      margin-bottom: 35px;
      color: #1f1f1f;
    }

    .hero-content h1 span {
      color: #b81224;
    }

    .hero-content p {
      font-size: 20px;
      line-height: 1.7;
      color: #666;
      margin-bottom: 45px;
      max-width: 520px;
    }

    .hero-buttons {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .hero-image {
      position: relative;
      height: 720px;
    }

    .hero-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(245,245,245,0.05), rgba(0,0,0,0.05));
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    section {
      padding: 120px 0;
    }

    .intro {
      text-align: center;
      background: white;
    }

    .intro h2,
    .contact-box h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 62px;
      font-weight: 500;
      margin-bottom: 30px;
      color: #222;
    }

    .divider {
      width: 70px;
      height: 2px;
      background: #b81224;
      margin: 0 auto 35px;
    }

    .intro p {
      max-width: 950px;
      margin: 0 auto;
      font-size: 22px;
      color: #666;
    }

    .services {
      background: #fafafa;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      background: white;
      margin-top: 40px;
      border-top: 1px solid #ececec;
      border-bottom: 1px solid #ececec;
    }

    .service-card {
      padding: 55px 30px;
      text-align: center;
      border-right: 1px solid #ececec;
      transition: 0.3s ease;
    }

    .service-card:hover {
      background: #fafafa;
    }

    .service-card:last-child {
      border-right: none;
    }

    .service-icon {
      width: 74px;
      height: 74px;
      margin: 0 auto 28px;
      border: 1px solid #d8b7bc;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #b81224;
      font-size: 30px;
      font-weight: 300;
    }

    .service-card h3 {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 18px;
      letter-spacing: 1px;
      color: #2a2a2a;
    }

    .service-card p {
      color: #666;
      font-size: 15px;
      line-height: 1.8;
    }

    .about-grid,
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .about-image img {
      height: 720px;
      object-fit: cover;
    }

    .section-label {
      color: #b81224;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
      margin-bottom: 25px;
      font-weight: 600;
    }

    .about-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 58px;
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 35px;
    }

    .about-content p {
      margin-bottom: 25px;
      color: #666;
      font-size: 20px;
    }

    .stats {
      display: flex;
      gap: 40px;
      margin-top: 50px;
    }

    .stat strong {
      display: block;
      font-size: 52px;
      color: #b81224;
      font-weight: 400;
      font-family: 'Cormorant Garamond', serif;
    }

    .stat span {
      color: #666;
    }

    .contact {
      background: #f7f7f7;
    }

    .contact-box {
      background: white;
      padding: 90px;
    }

    .contact-info p {
      color: #666;
      font-size: 20px;
      margin-bottom: 40px;
    }

    .contact-details {
      font-size: 18px;
      line-height: 2;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    input,
    textarea {
      padding: 20px;
      border: 1px solid #dddddd;
      background: white;
      font-size: 16px;
      font-family: inherit;
      transition: 0.3s ease;
    }

    input:focus,
    textarea:focus {
      outline: none;
      border-color: #b81224;
    }

    textarea {
      min-height: 180px;
      resize: vertical;
    }

    footer {
      background: white;
      border-top: 1px solid #ececec;
      padding: 40px 0;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #666;
    }

    .footer-links a:hover {
      color: #b81224;
    }

    @media (max-width: 1200px) {
      .hero-grid,
      .about-grid,
      .contact-grid,
      .services-grid {
        grid-template-columns: 1fr;
      }

      .hero-content {
        padding: 80px 0;
      }

      .hero-image {
        height: 600px;
      }

      .service-card {
        border-right: none;
        border-bottom: 1px solid #e6e6e6;
      }
    }

    @media (max-width: 768px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .logo img {
        width: 260px;
      }

      .hero-content h1 {
        font-size: 58px;
      }

      .intro h2,
      .contact-box h2,
      .about-content h2 {
        font-size: 42px;
      }

      .hero-content p,
      .intro p,
      .about-content p,
      .contact-info p {
        font-size: 18px;
      }

      .contact-box {
        padding: 50px 35px;
      }

      .stats {
        flex-direction: column;
        gap: 20px;
      }

      section {
        padding: 80px 0;
      }
    }
