/* Medium viewport adjustments */

@media (max-width: 1700px) {
  .recruit-block .recruit-image img {
    width: 639px;
    height: auto;
    display: block;
    object-fit: cover;
  }
}

@media (max-width: 1199px) and (min-width: 769px) {
  body {
    overflow-x: hidden;
  }

  main {
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
  }

  .block-wrapper,
  .content-wrapper {
    max-width: 960px;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }

  .content-wrapper > * {
    flex: 1 1 100%;
  }

  .sidebar,
  .sidebar-nav {
    width: 100%;
    padding: 0;
  }

  .main-banner {
    height: auto;
    padding: 140px 24px 80px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main-banner h2 {
    width: 100%;
    font-size: 48px;
  }

  .main-banner .additional-block {
    position: static;
    margin-top: 40px;
    width: min(520px, 90%);
    height: auto;
    border-radius: 12px;
    justify-content: center;
    padding: 24px 32px;
  }

  .additional-block p {
    width: 100%;
    height: auto;
    font-size: 42px;
  }

  .news-block {
    height: auto;
    margin-bottom: 120px;
    padding: 0 24px 80px;
  }

  .news-block .block-wrapper {
    padding: 0;
  }

  .short-news {
    padding: 32px;
    gap: 24px;
  }

  .news-item {
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
  }

  .news-item .news-date,
  .news-item .news-category {
    width: auto;
    min-width: 120px;
  }

  .news-item .news-category {
    padding: 4px 16px;
  }

  .news-item .news-content {
    width: 100%;
    max-width: none;
  }

  .bussines-block {
    height: auto;
    padding-bottom: 120px;
  }

  .home-block-header {
    height: auto;
    padding: 60px 0;
  }

  .block-title {
    padding-top: 60px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
  }

  .card-grid {
    justify-content: center;
    gap: 32px;
  }

  .card-grid .card {
    flex: 1 1 calc(50% - 32px);
    max-width: 320px;
  }

  .about-block .block-wrapper {
    padding: 0 24px;
  }

  .about-short span {
    font-size: 22px;
    line-height: 34px;
  }

  .image-section {
    flex-direction: column;
    gap: 24px;
  }

  .image-section .image-block,
  .image-section .text-block {
    width: 100%;
  }

  .recruit-block {
    margin-top: 120px;
    height: auto;
  }

  .recruit-content {
    flex-direction: column;
    width: 100%;
    gap: 32px;
    min-height: auto;
  }

  .recruit-text {
    width: 100%;
    padding: 0 16px;
  }

  .recruit-block .recruit-image {
    width: 100%;
    position: static;
    order: 2;
    margin: 0 0 32px;
  }

  .recruit-block .recruit-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .recruit-text .reffer-link {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 0;
    padding: 18px 32px 18px 48px;
  }

  .contact-content {
    flex-direction: column;
    gap: 24px;
  }

  .contact-text {
    max-width: 100%;
  }

  .content-wrapper .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .benefits-table .table-row,
  .company-info-table .table-row {
    flex-direction: column;
  }

  .benefits-table .table-label,
  .company-info-table .table-label,
  .benefits-table .table-content,
  .company-info-table .table-content {
    width: 100%;
    padding: 16px;
  }

  .navbar {
    display: none !important;
  }

  .navbar-block {
    display: none !important;
  }

  .language-block {
    display: none !important;
  }

  .hamburger-menu {
    display: block;
    background: #2b39d5;
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease;
    border: 0;
    padding: 0;
  }

  .hamburger-menu:hover {
    background: #1e2a9e;
  }

  .hamburger-menu .line1,
  .hamburger-menu .line2 {
    position: absolute;
    background: white;
    border: 1px solid white;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    transition: all 0.3s ease;
  }

  .hamburger-menu .line3 {
    position: absolute;
    background: white;
    border: 1px solid white;
    height: 3px;
    left: 50%;
    transform: translateX(-12px);
    width: 19px;
    transition: all 0.3s ease;
  }

  .hamburger-menu .line1 {
    top: 22px;
  }

  .hamburger-menu .line2 {
    top: 30px;
  }

  .hamburger-menu .line3 {
    top: 38px;
  }

  .menu-open .hamburger-menu .line1 {
    transform: translateX(-50%) rotate(45deg);
    top: 30px;
  }

  .menu-open .hamburger-menu .line2 {
    opacity: 0;
  }

  .menu-open .hamburger-menu .line3 {
    transform: translateX(-50%) rotate(-45deg);
    top: 30px;
    width: 24px;
  }
}

/* Mobile Styles - Based on Figma Design SP/375px */

@media (max-width: 768px) {
  /* Base Layout */
  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
  }

  main {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    overflow-x: hidden;
    padding-top: 64px;
  }

  section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Header */
  .header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: #ffffff;
    height: 64px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    z-index: 100;
    transition: background 0.3s ease;
  }

  .logo-block {
    margin-left: 0;
    margin-right: auto;
    padding-left: 16px;
    background: transparent;
    width: auto;
    height: 64px;
    display: flex;
    align-items: center;
  }

  .logo-block img {
    width: 220px;
    height: auto;
  }

  .navbar-block {
    display: none !important;
  }

  .language-block {
    display: none !important;
  }

  .navbar {
    display: none !important;
  }

  /* Hamburger Menu */
  .hamburger-menu {
    display: block;
    background: #2b39d5;
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease;
  }

  .hamburger-menu:hover {
    background: #1e2a9e;
  }

  .hamburger-menu .line1,
  .hamburger-menu .line2 {
    position: absolute;
    background: white;
    border: 1px solid white;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    transition: all 0.3s ease;
  }

  .hamburger-menu .line3 {
    position: absolute;
    background: white;
    border: 1px solid white;
    height: 3px;
    left: 50%;
    transform: translateX(-12px);
    width: 19px;
    transition: all 0.3s ease;
  }

  .hamburger-menu .line1 {
    top: 22px;
  }

  .hamburger-menu .line2 {
    top: 30px;
  }

  .hamburger-menu .line3 {
    top: 38px;
  }

  .menu-open .hamburger-menu .line1 {
    transform: translateX(-50%) rotate(45deg);
    top: 30px;
  }

  .menu-open .hamburger-menu .line2 {
    opacity: 0;
  }

  .menu-open .hamburger-menu .line3 {
    transform: translateX(-50%) rotate(-45deg);
    top: 30px;
    width: 24px;
  }

  /* Main Banner */
  .main-banner {
    height: 315px;
    position: static;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .main-banner .additional-block {
    position: absolute;
    top: 382px;
    left: 0;
    background: white;
    border-radius: 0 10px 10px 0;
    width: 261px;
    height: auto;
    min-height: 92px;
    display: flex;
    align-items: center;
    padding: 21px;
    box-sizing: border-box;
  }

  .additional-block p {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 2px;
    color: #4a4459;
    margin: 0;
    width: 100%;
    height: 50px;
    word-wrap: break-word;
  }

  /* Animated Stick */
  .animated-stick {
    width: 4px;
    height: 71px;
    margin: 0;
    top: 30px;
  }

  /* Section Titles */
  .block-title {
    padding-top: 0px;
    padding-top: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .news-block .block-title {
    padding-top: 0;
  }

  .block-title h2 {
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    color: #2b39d5;
    margin-bottom: 0;
  }

  .block-title span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1.44px;
    margin-left: 0;
    color: #4a4459;
    display: block;
  }

  /* News Block */
  .news-block {
    padding: 30px 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    height: 600px;
    margin-bottom: 143px;
  }

  .news-block .block-wrapper {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .short-news {
    background: #f7f6f8;
    padding: 15px;
    border-radius: 0;
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .short-news .reffer-link {
    width: calc(100% + 30px) !important;
    max-width: calc(100% + 30px);
    align-self: stretch;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -15px;
    top: 0px;
    left: 0px;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px 0;
    border-bottom: none;
  }

  .news-date {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 28px;
    color: #4a4459;
  }

  .news-category {
    border: 2px solid #2b39d5;
    background: white;
    color: #2b39d5;
    padding: 5px;
    width: auto;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1.2px;
  }

  .news-content {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 28px;
    color: #4a4459;
    width: 100%;
    margin: 0;
  }

  .news-item .news-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    max-width: 100%;
  }

  .news-block .reffer-link {
    background: #2b39d5;
    color: #fdfdfd;
    padding: 18px 32px 18px 48px;
    border-radius: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1.44px;
    text-decoration: none;
    height: 76px;
    top: 380px;
    position: absolute;
  }

  .news-block .reffer-link svg {
    width: 43px;
    height: 43px;
  }

  /* Business Block */
  .bussines-block {
    background: #e3e5ff;
    width: 100%;
    max-width: 100vw;
    height: auto;
    min-height: auto;
    padding-bottom: 40px;
    overflow: hidden;
  }

  .home-block-header {
    background: white;
    width: 100%;
    height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bussines-block .block-wrapper {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 100%;
  }

  .card {
    width: 100%;
    height: 180px !important;
    min-height: 180px;
    max-height: 180px;
    aspect-ratio: unset !important;
    position: relative;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }

  .card-grid .card {
    height: 180px !important;
    aspect-ratio: unset !important;
    border-radius: 15px !important;
    flex: unset !important;
  }

  .card-grid .card::before {
    display: none;
  }

  .card > img {
    width: 100%;
    height: 126px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
  }

  .card-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 11px 0 18px;
    border-radius: 0 0 15px 15px;
    box-sizing: border-box;
  }

  .card-navigation span {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: #625b71;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }

  .card-navigation img:first-child {
    width: auto;
    height: 15px;
    max-width: 15px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .card-navigation .arrow-left-icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .card-grid .card:hover .card-navigation img:first-child {
    position: static;
    transform: none;
    width: auto;
    height: 15px;
    filter: none;
  }

  .card-grid .card:hover .card-navigation::before {
    display: none;
  }

  .card-grid .card:hover .card-navigation span {
    color: #625b71;
  }

  .card-grid .card:hover .card-navigation .arrow-left-icon {
    filter: none;
    transform: rotate(90deg);
  }

  .bussines-block .reffer-link {
    display: none;
  }

  /* About Block */
  .about-block {
    background: white;
    padding: 40px 16px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    min-height: 0px;
  }

  .about-block .block-title {
    margin-bottom: 20px;
    padding-top: 0px;
  }

  .about-short span:first-child {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 30px;
    color: #4a4459;
    display: block;
    margin-bottom: 20px;
  }

  .about-short span:last-child {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1.44px;
    color: #4a4459;
    display: block;
  }

  .about-block .reffer-link {
    background: #2b39d5;
    color: #fdfdfd;
    padding: 18px 32px 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
    border-radius: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1.44px;
    text-decoration: none;
    height: 76px;
  }

  .about-block .reffer-link svg {
    transform: rotate(90deg);
    width: 43px;
    height: 43px;
  }

  /* Image Sections */
  .image-section {
    flex-direction: column;
    margin: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    height: 100%;
  }

  .image-section.reverse {
    flex-direction: column;
  }

  .image-block {
    width: 100%;
    height: 213px;
    max-width: 100vw;
  }

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

  .image-section.reverse .text-block {
    text-align: start;
  }

  .text-block {
    display: block;
    width: 100%;
    background: #f7f6f8;
    padding: 24px 16px;
    height: 192px;
  }

  .text-block h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 2.4px;
    color: #4a4459;
    margin-bottom: 16px;
  }

  .text-block p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1.44px;
    color: #4a4459;
  }

  .text-block h3::after {
    content: "";
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-left: 8px;
    vertical-align: middle;
  }

  /* Recruit Block */
  .recruit-block {
    position: relative;
    padding: 0;
    margin-top: 80px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    /* height: 1400px; */
  }

  .recruit-block .home-block-header {
    background: white;
    padding: 40px 16px 25px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 100vw;
  }

  .recruit-block .block-wrapper {
    padding: 30px 16px 30px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
  }

  .recruit-content {
    flex-direction: column;
    width: 100%;
  }

  .recruit-text {
    width: 100%;
    padding: 0;
  }

  .recruit-text h3 {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 2.4px;
    color: white;
    margin-bottom: 20px;
    width: 100%;
  }

  .recruit-text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1.44px;
    color: white;
    margin-bottom: 40px;
    width: 100%;
  }

  .recruit-block .recruit-image {
    width: 100%;
    max-width: 375px;
    position: static !important;
    margin: 0 auto 32px;
    overflow: hidden;
  }

  .recruit-block .recruit-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: static;
  }

  .recruit-block .reffer-link {
    background: white;
    color: #2b39d5;
    padding: 18px 32px 18px 48px;
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1.44px;
    text-decoration: none;
    height: 86.758px;
    margin-top: 0px;
  }

  .recruit-block .reffer-link svg {
    width: 43px;
    height: 43px;
  }

  /* Contact Block */
  .contact-block {
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    height: auto;
    margin-top: 150px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    position: static;
  }

  .contact-left {
    display: none;
    position: static;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    order: 1;
    padding: 22px 0 25px;
  }

  .contact-right {
    position: static;
    width: 100%;
    height: 210px;
    opacity: 0.8;
    background: #fff;
    order: 2;
  }

  .contact-block .block-wrapper {
    padding: 0 18px;
    width: 100%;
    max-width: 100%;
    order: 1;
    position: static;
    z-index: auto;
    background-color: #ffffff;
    padding-top: 22px;
    padding-bottom: 16px;
  }

  .contact-content {
    flex-direction: column;
    min-height: 0px;
  }

  .contact-text {
    width: 100%;
    padding: 0px;
  }

  .contact-text h2 {
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    color: #2b39d5;
    margin-bottom: 0;
  }

  .contact-text span {
    display: none;
  }

  .contact-text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 2.4px;
    color: #2b39d5;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .contact-block .reffer-link {
    background: #2b39d5;
    color: #fdfdfd;
    padding: 18px 48px;
    width: 343px;
    min-width: 343px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1.44px;
    text-decoration: none;
    height: 75.717px;
  }

  .contact-block .reffer-link svg {
    width: 43px;
    height: 43px;
  }

  /* Footer */
  .footer {
    background: #f2f3ff;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    min-height: 376px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    padding: 48px 36px;
    box-sizing: border-box;
  }

  .footer-logo-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
  }

  .footer-logo-mobile img {
    width: auto;
    height: 35.862px;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
  }

  .footer-column {
    display: none;
  }

  .footer-column h4 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #4a4459;
    margin: 0;
    border: none;
    padding: 0;
  }

  .footer-column h4::before {
    display: none;
  }

  .footer-column ul {
    display: none;
  }

  .footer-quick-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 289px;
    width: 289px;
  }

  .footer-quick-info .footer-column {
    display: block;
    width: auto;
    text-align: left;
  }

  .footer-quick-info .footer-column:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-quick-info .footer-column:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-quick-info .footer-column:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-quick-info .footer-column:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-quick-info .footer-column:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }

  .footer-quick-info .footer-column:nth-child(6) {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .footer-quick-info .footer-column h4 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #4a4459;
  }

  .footer-quick-info .footer-column h4::before {
    display: none;
  }

  /* Contact Button in Footer */
  .footer-contact-button {
    background: #e6ff25;
    max-width: 275px;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .footer-contact-button a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .footer-contact-button p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #4a4459;
    margin: 0;
  }

  .footer-bottom {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
  }

  .footer-logo {
    display: none;
  }

  .footer-logo-mobile {
    display: flex !important;
  }

  .footer-copyright {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #4a4459;
    text-align: center;
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }

  .scroll-up {
    width: 60px;
    height: 60px;
    right: 0;
    bottom: 20px;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  main {
    max-width: 100%;
  }

  .block-wrapper {
    max-width: 90%;
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
