    :root {
      --header-height: 64px;
      --radius: 12px;
      --bg: #ffffff;
      --bg-elev: #f7f9fb;
      --text: #0b0f14;
      --muted: #4b5565;
      --accent: #155eef;
      --accent-2: #5aa9ff;
      --border: rgba(0, 0, 0, 0.08);
      --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      --underline: #155eef;
    }


    body {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 17px;
      color: #222;
      --scroll-gap: 30px;
      line-height: 1.9;
      background: #eff0ee;
    }

    a {
      text-decoration: none;
    }

    tr {
      padding: 0px;
      margin: 10px;
      border-bottom: 1px solid #818181;
    }

    th {
      text-align: left;
      font-weight: 400;
    }

    img {
      width: 100%;
    }

    h1 {
      font-size: 46px;
      font-weight: 500;
    }

    h2 {
      letter-spacing: 3px;
      font-size: 32px;
      font-weight: 500;
      margin: 10px 0px 20px;
    }

    h3 {
      font-weight: 500;
    }

    footer {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .mv {
      color: #fff;
      margin-top: -80px;
      height: 100dvh;
      background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/mv.jpg");
      background-size: cover;
      background-position: center;
      display: flex;
      /* Centering content */
      align-items: center;
      justify-content: center;
    }

    .mv .container {
      padding-top: 80px;
      /* Offset for header */
      width: 100%;
      text-align: center;
    }

    .mv h1 {
      font-size: clamp(1.6rem, 5vw, 4rem);
      line-height: 1.4;
      margin-top: 20px;
      letter-spacing: 0.1em;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .mv p {
      font-size: clamp(1rem, 2vw, 1.5rem);
      letter-spacing: 0.2em;
      font-weight: 500;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    section {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .bg {
      background: #f5f5f5;
    }

    .bg2 {
      background: #222;
      color: #fff;
    }

    .midashi {
      text-align: center;
      margin-bottom: 45px;
    }

    .container {
      width: 100%;
      max-width: 1460px;
      padding: 90px 60px;
    }

    /* Works Section */
    .works-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 20px;
    }

    @media (max-width: 960px) {
      .works-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .works-grid {
        grid-template-columns: 1fr;
      }
    }

    .works-card {
      display: block;
      color: #222;
      transition: transform 0.3s ease;
    }

    .works-card:hover {
      transform: translateY(-5px);
    }

    .works-card__media {
      position: relative;
      border-radius: 4px;
      /* Slightly refined radius */
      overflow: hidden;
      aspect-ratio: 4 / 3;
      margin-bottom: 20px;
    }

    .works-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .works-card:hover .works-card__media img {
      transform: scale(1.08);
      /* Sophisticated zoom */
    }

    .works-card__tag {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #fff;
      color: #222;
      font-size: 12px;
      padding: 6px 14px;
      border-radius: 20px;
      /* Pill shape */
      font-weight: 500;
      letter-spacing: 0.1em;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .works-card__title {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.6;
      margin: 0;
      transition: color 0.3s ease;
    }

    .works-card:hover .works-card__title {
      color: #8a9c24;
      /* Muted green accent or keep black? Let's try subtle change */
      text-decoration: underline;
      text-decoration-color: rgba(138, 156, 36, 0.5);
    }

    .column2 {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
    }

    .column_work {
      display: grid;
      grid-template-columns: 0.7fr 2fr;
      gap: 30px;
    }


    .list {
      display: flex;
      flex-direction: column;
      border-top: 1px solid #d4d4d4;
    }

    .list li {
      display: flex;
      gap: 20px;
      border-bottom: 1px solid #d4d4d4;
      padding: 20px 0;
    }

    .contact-field {
      display: flex;
      gap: 60px;
      justify-content: center;
      align-items: center;
    }

    .contact-btn {
      padding: 10px 20px;
      border: 1px solid #fff;
    }

    /* Footer */
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 60px;
      padding-bottom: 40px;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        gap: 40px;
      }
    }

    .footer-brand {
      color: #fff;
    }

    .brand-name-footer {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      display: block;
      letter-spacing: 0.05em;
    }

    .footer-address {
      font-size: 14px;
      line-height: 1.8;
      opacity: 0.8;
      margin-bottom: 10px;
    }

    .footer-tel {
      font-size: 16px;
      color: #fff;
      text-decoration: none;
      opacity: 0.9;
      display: inline-block;
    }

    .footer-nav ul {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    @media (max-width: 768px) {
      .footer-nav ul {
        flex-direction: column;
        gap: 15px;
      }
    }

    .footer-nav a {
      color: #fff;
      font-size: 14px;
      opacity: 0.7;
      transition: opacity 0.2s;
    }

    .footer-nav a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    .footer-copyright {
      text-align: center;
      font-size: 12px;
      opacity: 0.5;
      color: #fff;
    }

    .contact_box {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      #contact .midashi h2 {
        font-size: 20px;
        /* Reduced to prevent line break */
        white-space: nowrap;
      }
    }

    /* News Section */
    .news-container {
      width: 100%;
      /* Fill the parent .container */
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 60px;
      align-items: start;
    }

    .news-container .midashi_div {
      text-align: left;
    }

    @media (max-width: 768px) {
      .news-container {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }

    .news-list {
      border-top: 1px solid #e0e0e0;
    }

    .news-item {
      display: flex;
      align-items: center;
      padding: 20px 0;
      border-bottom: 1px solid #e0e0e0;
      text-decoration: none;
      color: #222;
      transition: background-color 0.2s ease, padding-left 0.2s ease;
      gap: 30px;
    }

    .news-item:hover {
      background-color: #fafafa;
      padding-left: 10px;
    }

    .news-item time {
      font-family: 'Roboto Condensed', sans-serif;
      color: #888;
      font-size: 14px;
      letter-spacing: 0.05em;
      min-width: 100px;
    }

    .news-title {
      flex: 1;
      font-weight: 500;
      line-height: 1.5;
    }

    .news-item .arrow {
      color: #ccc;
      transition: color 0.2s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
    }

    .news-item:hover .arrow {
      color: #8a9c24;
      transform: translateX(5px);
    }

    @media (max-width: 600px) {
      .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        position: relative;
      }

      .news-item .arrow {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
      }

      .news-item:hover .arrow {
        transform: translateY(-50%) translateX(5px);
      }
    }

    /* Concept Section (New Japanese Modern) */
    .concept-new {
      padding: 120px 0;
      background: #eff0ee;
      overflow: hidden;
    }

    .concept-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      gap: 60px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .concept-inner {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }

    .concept-image {
      position: relative;
      width: 100%;
      height: 600px;
      overflow: hidden;
    }

    @media (max-width: 900px) {
      .concept-image {
        height: 400px;
      }
    }

    .concept-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .concept-new:hover .concept-image img {
      transform: scale(1.05);
    }

    .concept-content {
      padding: 60px;
      display: flex;
      justify-content: center;
      position: relative;
    }

    .concept-text {
      writing-mode: vertical-rl;
      text-orientation: upright;
      font-feature-settings: "palt";
      letter-spacing: 0.1em;
      line-height: 2.2;
    }

    @media (max-width: 900px) {
      .concept-text {
        writing-mode: horizontal-tb;
        text-align: center;
        width: 100%;
      }
    }

    .concept-text h2 {
      font-size: 32px;
      margin-left: 60px;
      /* Vertical margin becomes left/right */
      font-weight: 500;
      line-height: 1.8;
      letter-spacing: 0.2em;
    }

    @media (max-width: 900px) {
      .concept-text h2 {
        margin-left: 0;
        margin-bottom: 40px;
        font-size: 28px;

        br {
          display: none;
        }
      }
    }

    .concept-text p {
      font-size: 16px;
      margin-left: 30px;
      color: #333;
    }

    @media (max-width: 900px) {
      .concept-text p {
        margin-left: 0;
        margin-bottom: 20px;
        text-align: left;
        display: inline-block;
        text-align: center;
      }

      .concept-text p br {
        display: none;
      }
    }

    .concept-sub {
      margin-top: 40px;
      /* In vertical, this pushes it to likely left */
      font-size: 14px;
      color: #666;
    }

    @media (max-width: 900px) {
      .concept-sub {
        margin-top: 20px;
      }
    }

    /* Company Section */
    .company-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    @media (max-width: 900px) {
      .company-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .company-map {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      /* 16:9 Aspect Ratio */
      height: 0;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .company-map iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .company-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
    }

    .company-table th,
    .company-table td {
      padding: 20px 0;
      border-bottom: 1px solid #e0e0e0;
      text-align: left;
    }

    .company-table th {
      width: 120px;
      font-weight: 500;
      color: #1a1a1a;
      vertical-align: top;
    }

    .company-table td {
      color: #444;
      line-height: 1.8;
    }

    /* Works Detail Page */
    .works-detail {
      margin-bottom: 80px;
    }

    .works-detail-header {
      margin-bottom: 40px;
      text-align: left;
    }

    .works-category {
      display: inline-block;
      background: #f0f0f0;
      padding: 4px 12px;
      font-size: 13px;
      letter-spacing: 0.05em;
      margin-bottom: 15px;
      border-radius: 4px;
      color: #666;
    }

    .works-title {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.4;
    }

    /* Simple Layout Styles */
    .works-main-image {
      width: 100%;
      margin-bottom: 40px;
      border-radius: 8px;
      overflow: hidden;
    }

    .works-main-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .works-content-simple {
      max-width: 800px;
      margin: 0 auto;
    }

    .works-content-simple p {
      font-size: 16px;
      line-height: 2;
      color: #333;
      margin-bottom: 2em;
    }

    .works-nav {
      text-align: center;
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid #eee;
    }

    .btn-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #222;
      font-weight: 500;
      transition: color 0.3s;
    }

    .btn-back:hover {
      color: #bcd331;
    }

    /* Related Works */
    .related-works {
      margin-top: 80px;
    }

    .section-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
    }

    .works-grid-sm {
      grid-template-columns: repeat(3, 1fr);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .works-grid-sm {
        grid-template-columns: 1fr;
      }

      .works-title {
        font-size: 24px;
      }
    }

    /* Header */
    .site-header {
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      font-size: 15px;
    }

    .header-inner {
      width: 100%;
      padding: 0 0 0 60px;
      margin: 0 auto;
      height: 80px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 12px;
      color: #222;
    }

    .site-header.sub {
      background: #eff0ee;
    }

    .sub .header-inner {
      color: #000
    }

    header {
      background: #eff0ee;
      color: #222;
      border-bottom: 1px solid #e9e9e9;
      /* Animation removed */
    }

    /* Branding */
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .brand-name {
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    /* Desktop nav */
    .nav {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .nav a {
      padding: 10px 12px;
      border-radius: 8px;
      transition: color .2s ease, text-decoration-color .2s ease;
      text-decoration: none;
    }

    /* Actions */
    .actions {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      justify-content: flex-end;
    }

    /* CTA button: animation removed */
    .btn {
      display: flex;
      gap: 5px;
      align-items: center;
      justify-content: center;
      color: #222;
      position: relative;
      padding: 28px;
      background: #bcd331;
      transition: transform .06s ease, border-color .2s ease;
      overflow: hidden;
      text-decoration: none;
      line-height: 1;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border-radius: 3px;
      background: #222;
    }

    .hamburger-box {
      width: 22px;
      height: 16px;
      position: relative;
    }

    .hamburger-line {
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform .25s ease, opacity .2s ease;
    }

    .hamburger-line:nth-child(1) {
      top: 0;
    }

    .hamburger-line:nth-child(2) {
      top: 7px;
    }

    .hamburger-line:nth-child(3) {
      bottom: 0;
    }

    .hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
      opacity: 0;
    }

    .hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Drawer */
    .drawer {
      position: fixed;
      inset: 0 0 0 auto;
      width: min(86vw, 360px);
      background: var(--bg);
      border-left: 1px solid var(--border);
      transform: translateX(100%);
      transition: transform .3s ease;
      z-index: 1001;
      display: flex;
      flex-direction: column;
      padding: 16px;
      gap: 8px;
    }

    .drawer.open {
      transform: translateX(0);
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }

    .drawer-nav {
      display: grid;
      gap: 6px;
      padding-top: 12px;
    }

    .drawer-nav a {
      padding: 12px;
      border-radius: 3px;
      text-decoration: none;
      transition: color .2s ease;
    }


    .drawer-close {
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #222;
      /* Black color for X */
      transition: opacity 0.2s ease;
    }

    .drawer-close:hover {
      opacity: 0.7;
    }

    .drawer-close svg {
      width: 28px;
      height: 28px;
    }

    /* Scrim */
    .scrim {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease;
      z-index: 1000;
    }

    .scrim.show {
      opacity: 1;
      pointer-events: auto;
    }



    /* Responsive */
    @media (max-width: 1200px) {
      .nav {
        display: none;
      }

      .hamburger {
        display: inline-flex;
      }

      .header-inner {
        gap: 0;
      }
    }

    @media (max-width: 768px) {
      .actions .btn {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .header-inner {
        padding: 0 24px;
      }

      .container {
        padding: 60px 24px;
      }

      .column3 {
        grid-template-columns: 1fr;
        gap: 45px 0;
      }

      .column2 {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .midashi_div {
        text-align: center;
      }

      .column {
        grid-template-columns: 1fr;
        gap: 45px;
      }
    }


    .single_wrapper {
      background: #fff;
      padding: 60px;
    }

    .works_title {
      font-size: 36px;
      margin-bottom: 60px;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      max-width: 600px;
    }

    th,
    td {
      padding: 10px 14px;
      text-align: left;
    }

    .works_table {
      font-size: 16px;
      margin-bottom: 45px;
    }

    .works_table tr {
      border-bottom: 1px solid #dddddd;
    }

    .work_points {
      display: grid;
      grid-template-columns: 1.5fr 2fr;
      gap: 60px;
      border-bottom: 1px solid #dddddd;
      padding-bottom: 45px;
    }

    .points_wrapper {
      display: flex;
      flex-direction: column;
      gap: 45px;
    }

    .p_number {
      font-size: 14px;
      background: #bcd331;
      padding: 1px 10px;
    }

    .work_points h3 {
      margin-top: 30px;
    }

    .caption {
      color: #bcd331;
      line-height: 1;
    }


    .footer_btn_cover {
      display: flex;
      gap: 30px;
      margin-top: 45px;
    }

    @media (max-width: 768px) {
      .footer_btn_cover {
        flex-direction: column;
        gap: 20px;
      }
    }

    .f_btn {
      width: 100%;
      background: #bcd331;
      color: #222;
      border-radius: 3px;
      display: flex;
      align-items: center;
      padding: 20px 40px;
      height: 100px;
      transition: all 0.2s ease-in-out;
      font-weight: 500;
      justify-content: space-between;
    }

    .f_btn:hover {
      background: #4d4d4d;
      color: #fff;
    }

    .f_btn.bl {
      background: #383838;
      color: #fff;
    }

    .f_btn.bl:hover {
      background: #4d4d4d;
    }

    .footer_bottom {
      border-bottom: 1px solid #3e3e3e;
    }

    .tag {
      background: #bcd331;
      display: inline-block;
      padding: 5px 10px;
      line-height: 1;
      font-size: 15px;
    }

    .tag_wrapper {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .breadcrumb {
      list-style: none;
      display: flex;
      font-size: 14px;
      padding: 0;
      margin: 0;
      margin-bottom: 60px;
      justify-content: flex-end;
      -webkit-align-items: flex-end;
      align-items: flex-end;
      overflow-x: auto;
      /* 横スクロールを許可 */
      white-space: nowrap;
      /* 折り返しを禁止 */
      -webkit-overflow-scrolling: touch;
      /* iOSでスムーズスクロール */
    }

    .breadcrumb li {
      display: inline;
      color: #bcd331;
    }

    .breadcrumb li+li::before {
      content: ">";
      padding: 0 8px;
      color: #666;
    }

    .breadcrumb a {
      text-decoration: none;
      color: #222;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    /* 矢印エリアのスタイル */
    .arrow {
      display: inline-flex;
      align-items: center;
      margin-left: 12px;
    }

    /* SVGのサイズ設定 */
    .arrow svg {
      height: 18px;
      width: 18px;
    }

    /* --- アニメーション設定（0.8秒） --- */
    .f_btn:hover .arrow {
      animation: arrowFlow 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .btn:hover .arrow {
      animation: arrowFlow 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }


    /* 右へ流れて左から戻る動き */
    @keyframes arrowFlow {
      0% {
        opacity: 1;
        transform: translateX(0);
      }

      45% {
        opacity: 0;
        transform: translateX(15px);
      }

      50% {
        opacity: 0;
        transform: translateX(-15px);
      }

      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .f_btn div {
      display: flex;
      align-items: center;
      flex-direction: center;
      gap: 5px;
    }



    /* Service Grid */
    .service-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
    }

    .service-card {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      /* Landscape aspect for dynamic feel */
      overflow: hidden;
      color: #fff;
    }

    @media (max-width: 768px) {
      .service-grid {
        grid-template-columns: 1fr;
      }

      .service-card {
        aspect-ratio: 4 / 3;
      }
    }

    .service-card__media {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      margin: 0;
      z-index: 1;
    }

    .service-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
      z-index: 2;
      opacity: 0.8;
      transition: opacity 0.4s ease;
    }

    .service-card:hover .service-card__media img {
      transform: scale(1.1);
    }

    .service-card:hover::after {
      opacity: 0.6;
    }

    .service-card__content {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 60px;
      padding-right: 120px;
      /* Prevent overlap with arrow */
      z-index: 3;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    @media (max-width: 768px) {
      .service-card__content {
        padding: 30px 90px 30px 30px;
        /* Prevent overlap with arrow on mobile */
      }
    }

    .service-card__number {
      font-family: "Roboto Condensed", sans-serif;
      font-size: 14px;
      letter-spacing: 2px;
      margin-bottom: 20px;
      opacity: 0.8;
      display: block;
      transform: translateY(0);
      transition: transform 0.4s ease;
    }

    .service-card__title {
      font-size: 32px;
      font-weight: 500;
      margin-bottom: 20px;
      line-height: 1.2;
      transform: translateY(0);
      transition: transform 0.4s ease;
    }

    .service-card__desc {
      font-size: 15px;
      line-height: 1.8;
      max-width: 500px;
      opacity: 0.9;
      transform: translateY(20px);
      transition: transform 0.4s ease, opacity 0.4s ease;
      opacity: 0.8;
      height: auto;
      margin-bottom: 0;
    }

    .service-card__arrow {
      position: absolute;
      bottom: 60px;
      right: 60px;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }

    @media (max-width: 768px) {
      .service-card__arrow {
        bottom: 30px;
        right: 30px;
      }
    }

    .service-card:hover .service-card__arrow {
      background: #fff;
      color: #222;
      border-color: #fff;
      transform: scale(1.1);
    }

    /* Hover effects */
    .service-card:hover .service-card__title {
      transform: translateY(-5px);
    }

    /* Page Header */
    .page-header {
      background: #bcd331;
      text-align: center;
    }

    .page-header h1 {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: 0.1em;
    }

    .page-header p {
      font-size: 16px;
      /* White text */
      letter-spacing: 0.1em;
      opacity: 0.9;
    }

    /* Service Detail Section */
    .service-detail-section {
      padding: 80px 0;
    }

    .service-detail {
      display: flex;
      gap: 60px;
      margin-bottom: 80px;
      align-items: center;
    }

    .service-detail:last-child {
      margin-bottom: 0;
    }

    .service-detail--reverse {
      flex-direction: row-reverse;
    }

    .service-detail__image {
      flex: 1;
      aspect-ratio: 4/3;
      overflow: hidden;
      border-radius: 4px;
    }

    .service-detail__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .service-detail:hover .service-detail__image img {
      transform: scale(1.05);
    }

    .service-detail__content {
      flex: 1;
    }

    .service-detail__number {
      font-family: 'Roboto Condensed', sans-serif;
      font-size: 60px;
      font-weight: 700;
      color: #e0e0e0;
      line-height: 1;
      display: block;
      margin-bottom: 10px;
    }

    .service-detail__content h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 5px;
      letter-spacing: 0.05em;
      color: #bcd331;
      /* Brand color */
    }

    .service-detail__content h4 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .service-detail__content p {
      font-size: 15px;
      line-height: 2;
      color: #333;
    }

    @media (max-width: 768px) {
      .service-detail {
        flex-direction: column;
        gap: 30px;
      }

      .service-detail--reverse {
        flex-direction: column;
      }

      .page-header {
        padding-top: 120px;
        padding-bottom: 40px;
      }

      .page-header h1 {
        font-size: 26px;
      }
    }

    /* Contact Page Form - Optimized */
    .contact-form-wrapper {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px 80px;
    }

    .contact-intro {
      text-align: center;
      margin-bottom: 50px;
      line-height: 2;
      color: #333;
    }

    .contact-form {
      background: #fff;
      padding: 60px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    }

    .form-group {
      margin-bottom: 30px;
    }

    .form-group label {
      display: block;
      font-weight: 700;
      margin-bottom: 12px;
      font-size: 15px;
      color: #222;
      letter-spacing: 0.05em;
    }

    .required {
      color: #fff;
      background: #e53935;
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 3px;
      margin-left: 10px;
      vertical-align: middle;
      font-weight: 500;
    }

    .form-control {
      width: 100%;
      padding: 16px;
      background-color: #f9f9f9;
      border: 1px solid #e6e6e6;
      border-radius: 6px;
      font-size: 16px;
      transition: all 0.3s ease;
      font-family: inherit;
      color: #333;
    }

    .form-control::placeholder {
      color: #aaa;
    }

    .form-control:focus {
      outline: none;
      background-color: #fff;
      border-color: #bcd331;
      box-shadow: 0 0 0 4px rgba(188, 211, 49, 0.1);
    }

    .select-wrapper {
      position: relative;
    }

    .select-wrapper::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 20px;
      width: 10px;
      height: 10px;
      border-right: 2px solid #aaa;
      border-bottom: 2px solid #aaa;
      transform: translateY(-70%) rotate(45deg);
      pointer-events: none;
    }

    select.form-control {
      appearance: none;
      cursor: pointer;
    }

    textarea.form-control {
      resize: vertical;
      min-height: 150px;
    }

    .form-submit {
      text-align: center;
      margin-top: 50px;
    }

    .submit-btn {
      background: #222;
      color: #fff;
      padding: 20px 80px;
      font-size: 16px;
      font-weight: 500;
      border: none;
      cursor: pointer;
      border-radius: 50px;
      transition: all 0.3s ease;
      letter-spacing: 0.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .submit-btn:hover {
      background: #bcd331;
      /* Brand Green */
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(188, 211, 49, 0.3);
    }

    @media (max-width: 768px) {
      .contact-form {
        padding: 30px 20px;
      }

      .form-control {
        font-size: 16px;
        /* Prevent iOS zoom */
        padding: 14px;
      }

      .submit-btn {
        width: 100%;
        padding: 18px;
      }
    }