#contact,
#company,
#works,
#faq,
#services {
  scroll-margin-top: 100px;
}

.baseSize {
  font-size: 3rem;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #1a1a1a;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
a:hover {
  color: #666666;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 25px 0;
  z-index: 1000;
}
header nav {
  width: 100%;
}
header nav ul {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  gap: 35px;
}
header nav ul li {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  position: relative;
  padding: 5px 0;
  overflow: hidden;
  transition: color 0.3s ease;
}
header nav ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d72121;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
header nav ul li:hover {
  color: #000;
}
header nav ul li:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

main {
  padding-top: 80px;
}

section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 60px;
  }
}

.Top {
  text-align: center;
  margin-top: 10vh;
  margin-bottom: 140px;
}
.Top p:first-child {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}
.Top h1 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 60px;
  line-height: 1.4;
}
.Top h3 {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 20px;
  font-weight: normal;
}
.Top button {
  background-color: #d72121;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 18px 80px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 10px 20px rgba(215, 33, 33, 0.2);
  margin-bottom: 15px;
}
.Top button:hover {
  background-color: rgb(192.8931451613, 29.6068548387, 29.6068548387);
  transform: translateY(-2px);
}
.Top button:active {
  transform: translateY(1px);
}
.Top p:last-child {
  font-size: 0.85rem;
  color: #999;
}

.AboutUs h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  position: relative;
}
.AboutUs h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #1a1a1a;
  margin-top: 15px;
}
.AboutUs p {
  margin-bottom: 40px;
  max-width: 800px;
  text-align: justify;
}

.Services-top {
  margin-bottom: 80px;
}

.service-lekodingguSection {
  margin-left: 3%;
}
.service-lekodingguSection h3 {
  font-size: 2.2rem;
}
.service-lekodingguSection .service-title {
  margin-bottom: 20px;
}
.service-lekodingguSection .service-lead {
  font-size: 1.1rem;
  color: #666666;
}
.service-lekodingguSection .type {
  margin-top: 120px;
}
.service-lekodingguSection .service-target {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-bottom: 80px;
  padding: 30px;
  background-color: #fff8f8;
  border-radius: 8px;
}
.service-lekodingguSection .service-target li {
  position: relative;
  padding-left: 35px;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.6;
}
.service-lekodingguSection .service-target li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 10px;
  border-left: 2px solid #d72121;
  border-bottom: 2px solid #d72121;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .service-lekodingguSection .service-target {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.service-lekodingguSection .service-detail {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-lekodingguSection .service-detail li {
  margin-top: 60px;
  padding-left: 20px;
  position: relative;
}
.service-lekodingguSection .service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  background-color: #d72121;
}
.service-lekodingguSection .service-detail li h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-lekodingguSection .service-detail li p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.9;
}

.newUsers {
  width: 100%;
  background-color: #fafafa;
  margin-bottom: 140px;
}

.newUsersSection {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 0;
}
.newUsersSection h2 {
  margin-top: 0;
}
.newUsersSection ol {
  counter-reset: step-counter;
  list-style: none;
  margin: 40px 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.newUsersSection ol li {
  position: relative;
  background: #fff;
  padding: 30px;
  flex: 1;
  min-width: 250px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #1a1a1a;
}
.newUsersSection ol li::before {
  counter-increment: step-counter;
  content: "Step " counter(step-counter);
  display: block;
  color: #d72121;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-family: "DIN Alternate", "Roboto", sans-serif;
  letter-spacing: 0.1em;
}
.newUsersSection h3 {
  margin-top: 60px;
  font-size: 1.4rem;
}

.Info .company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.Info .company-table tr {
  border-bottom: 1px solid #e0e0e0;
}
.Info .company-table th, .Info .company-table td {
  padding: 20px 10px;
  text-align: left;
}
.Info .company-table th {
  width: 30%;
  font-weight: normal;
  color: #666666;
}
.Info .company-table td {
  width: 70%;
}
@media (max-width: 768px) {
  .Info .company-table th, .Info .company-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .Info .company-table th {
    padding-top: 20px;
    font-size: 0.85rem;
  }
}

.WorksSection .section-intro {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 60px;
  max-width: 600px;
  line-height: 1.8;
}
.WorksSection .works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 50px 30px;
}
.WorksSection .work-card {
  display: block;
  cursor: pointer;
  group: work-hover;
}
.WorksSection .work-card .video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #000;
}
.WorksSection .work-card .video-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.9;
}
.WorksSection .work-card .video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
}
.WorksSection .work-card .video-thumb .play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
}
.WorksSection .work-card .work-info .category {
  display: block;
  font-size: 0.75rem;
  font-family: "DIN Alternate", "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d72121;
  margin-bottom: 8px;
}
.WorksSection .work-card .work-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s;
}
.WorksSection .work-card .work-info p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.WorksSection .work-card:hover .video-thumb img {
  transform: scale(1.05);
  opacity: 0.7;
}
.WorksSection .work-card:hover .video-thumb .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background-color: rgba(215, 33, 33, 0.9);
  border-color: transparent;
}
.WorksSection .work-card:hover .work-info h3 {
  color: #d72121;
}

.FaqSection .faq-container {
  max-width: 800px;
  border-top: 1px solid #e0e0e0;
}
.FaqSection .faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.FaqSection .faq-item[open] .faq-question .icon::after {
  transform: rotate(90deg);
}
.FaqSection .faq-item[open] .faq-question {
  color: #d72121;
}
.FaqSection .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
}
.FaqSection .faq-question::-webkit-details-marker {
  display: none;
}
.FaqSection .faq-question:hover {
  color: #666666;
}
.FaqSection .faq-question .icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 20px;
}
.FaqSection .faq-question .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translateY(-50%);
}
.FaqSection .faq-question .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: currentColor;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}
.FaqSection .faq-answer {
  padding-bottom: 30px;
  padding-right: 40px;
  color: #666666;
  line-height: 1.8;
  font-size: 0.95rem;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ContactSection {
  text-align: center;
  padding-bottom: 100px;
}
.ContactSection .contact-intro {
  color: #666666;
  margin-bottom: 60px;
  line-height: 2;
  font-size: 1rem;
}
.ContactSection .contact-intro .sub-text {
  display: block;
  font-size: 0.85rem;
  margin-top: 15px;
  opacity: 0.7;
}
.ContactSection .contact-direct-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fcfcfc;
  transition: all 0.4s ease;
}
.ContactSection .contact-direct-box .label {
  font-family: "DIN Alternate", "Roboto", sans-serif;
  font-size: 0.9rem;
  color: #d72121;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.ContactSection .contact-direct-box .mail-link-big {
  display: inline-block;
  font-family: "DIN Alternate", "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  word-break: break-all;
}
.ContactSection .contact-direct-box .mail-link-big .icon-arrow {
  font-size: 1.5rem;
  margin-left: 10px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  display: inline-block;
}
.ContactSection .contact-direct-box .mail-link-big:hover {
  color: #d72121;
}
.ContactSection .contact-direct-box .mail-link-big:hover .icon-arrow {
  transform: translate(5px, -5px);
}
.ContactSection .contact-direct-box .mail-link-big::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d72121;
  transition: width 0.3s ease;
}
.ContactSection .contact-direct-box .mail-link-big:hover::after {
  width: 100%;
}
.ContactSection .contact-direct-box .note {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #999;
}
.ContactSection .contact-direct-box:hover {
  background-color: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: transparent;
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .ContactSection .contact-direct-box {
    padding: 40px 15px;
  }
  .ContactSection .contact-direct-box .mail-link-big {
    font-size: 1.4rem;
  }
}

.site-footer {
  background-color: #f9f9f9;
  padding-top: 80px;
  margin-top: 100px;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #666666;
}
.site-footer .footer-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.site-footer .footer-brand .footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.site-footer .footer-brand .footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.8;
}
.site-footer .footer-brand .footer-address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.6;
}
.site-footer .footer-brand .footer-address p {
  margin-bottom: 0;
}
.site-footer .footer-links h3, .site-footer .footer-social h3 {
  font-size: 0.8rem;
  font-family: "DIN Alternate", "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  margin-bottom: 25px;
  opacity: 0.6;
}
.site-footer .footer-links ul li, .site-footer .footer-social ul li {
  margin-bottom: 12px;
}
.site-footer .footer-links ul li a, .site-footer .footer-social ul li a {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.site-footer .footer-links ul li a:hover, .site-footer .footer-social ul li a:hover {
  color: #d72121;
  padding-left: 5px;
}
.site-footer .footer-contact-btn {
  margin-top: 30px;
}
.site-footer .footer-contact-btn a {
  font-size: 0.85rem;
  font-family: "DIN Alternate", "Roboto", sans-serif;
  text-decoration: underline;
}
.site-footer .footer-contact-btn a:hover {
  text-decoration: none;
  color: #d72121;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px 0;
  text-align: center;
  background-color: #f5f5f5;
}
.site-footer .footer-bottom p.copyright {
  font-size: 0.75rem;
  color: #999;
  font-family: "DIN Alternate", "Roboto", sans-serif;
  margin-bottom: 10px;
}
.site-footer .footer-bottom .legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.site-footer .footer-bottom .legal-links li a {
  font-size: 0.75rem;
  color: #999;
}
.site-footer .footer-bottom .legal-links li a:hover {
  text-decoration: underline;
}
.site-footer .footer-contact-group .contact-desc {
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.site-footer .footer-contact-group .email-link {
  display: inline-block;
  font-family: "DIN Alternate", "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}
.site-footer .footer-contact-group .email-link .arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
  color: #d72121;
}
.site-footer .footer-contact-group .email-link:hover {
  color: #d72121;
  border-color: #d72121;
}
.site-footer .footer-contact-group .email-link:hover .arrow {
  transform: translateX(5px);
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .baseSize {
    font-size: 1.8rem !important;
    line-height: 1.4;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  header {
    padding: 10px 0;
  }
  header nav ul {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  header nav ul::-webkit-scrollbar {
    display: none;
  }
  header nav ul li {
    font-size: 0.85rem;
    flex-shrink: 0;
  }
  .Top {
    margin: 15vh 0 25vh 0;
  }
  .Top .TopSection p:first-child {
    margin-bottom: 20px;
  }
  .Top .TopSection h1 {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  .Top .TopSection button {
    width: 100%;
    padding: 15px 0;
  }
  .Services-top {
    margin-bottom: 40px;
  }
  .service-lekodingguSection {
    margin-left: 0;
  }
  .service-lekodingguSection .service-detail li {
    margin-top: 40px;
  }
  .service-lekodingguSection .service-detail li h4 {
    font-size: 1.2rem;
  }
  .WorksSection .works-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .WorksSection .work-card .video-thumb {
    margin-bottom: 15px;
  }
  .Info .company-table th, .Info .company-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .Info .company-table th {
    border-bottom: none;
    padding-bottom: 0;
    color: #d72121;
    font-size: 0.9rem;
  }
  .Info .company-table td {
    padding-top: 5px;
    border-bottom: 1px solid #e0e0e0;
  }
  .Info .company-table tr:last-child td {
    border-bottom: none;
  }
  .ContactSection .contact-direct-box {
    padding: 30px 15px;
  }
  .ContactSection .contact-direct-box .mail-link-big {
    font-size: 1.2rem;
    word-break: break-all;
  }
  .ContactSection .contact-direct-box .mail-link-big .icon-arrow {
    font-size: 1rem;
  }
  .site-footer {
    padding-top: 60px;
    margin-top: 60px;
  }
  .site-footer .footer-inner {
    gap: 40px;
  }
  .site-footer .footer-brand .footer-logo {
    font-size: 1.5rem;
  }
  .site-footer .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .site-footer .footer-links ul li {
    width: 45%;
    font-size: 0.85rem;
  }
  .site-footer .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
    padding-bottom: 40px;
  }
}
header .header-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .mobile-logo {
  display: none;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #1a1a1a;
}
header .mobile-logo .mobile-logoImg {
  width: 120px;
}
header .hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
header .hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  transition: all 0.4s ease-in-out;
  border-radius: 2px;
  left: 0;
}
header .hamburger span:nth-child(1) {
  top: 0;
}
header .hamburger span:nth-child(2) {
  top: 11px;
}
header .hamburger span:nth-child(3) {
  bottom: 0;
}
header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
  background-color: #d72121;
}
header .hamburger.active span:nth-child(2) {
  width: 0;
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
  bottom: auto;
  background-color: #d72121;
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }
  header .mobile-logo {
    display: block;
  }
  header .hamburger {
    display: block;
  }
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header nav ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 0;
  }
  header nav ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  header nav ul li a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
  }
  header nav ul .mobile-contact-btn a {
    color: #fff;
    background-color: #e03a3a;
    padding: 10px 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
  }
  header nav.active {
    opacity: 1;
    visibility: visible;
  }
  header nav.active li {
    opacity: 1;
    transform: translateY(0);
  }
  header nav.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  header nav.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  header nav.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  header nav.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  header nav.active li:nth-child(5) {
    transition-delay: 0.5s;
  }
  header nav.active li:nth-child(6) {
    transition-delay: 0.6s;
  }
  header nav.active li:nth-child(7) {
    transition-delay: 0.7s;
  }
  .site-footer {
    padding-top: 60px;
    margin-top: 60px;
    text-align: left;
  }
  .site-footer .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .site-footer .footer-brand {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 30px;
  }
  .site-footer .footer-brand .footer-logo {
    font-size: 1.5rem;
  }
  .site-footer .footer-links h3 {
    font-size: 0.9rem;
  }
  .site-footer .footer-links ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .site-footer .footer-social .footer-contact-group {
    background-color: #fff;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
  }
  .site-footer .footer-social .footer-contact-group .contact-desc {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  .site-footer .footer-social .footer-contact-group .email-link {
    font-size: 1rem;
    word-break: break-all;
    border: none;
    color: #d72121;
    font-weight: 900;
  }
  .site-footer .footer-social .footer-contact-group .email-link .arrow {
    display: block;
    transform: rotate(90deg);
    margin: 5px auto 0;
  }
  .site-footer .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
    padding-bottom: 40px;
  }
  .site-footer .footer-bottom .legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    display: none;
  }
  .site-footer .footer-bottom {
    border-top: none;
    padding-top: 20px;
    padding-bottom: 30px;
    flex-direction: column;
    gap: 15px;
  }
}/*# sourceMappingURL=index.css.map */