/* 重置樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 定義全域變數 */
:root {
    --primary-bg: #2c2c2c;
    --primary-color: #fff;
    --highlight-color: #C76675;
    --line-green: #C76675;
    --line-green-hover: #ffffff;
    --font-family: '微軟正黑體', sans-serif;
    --container-width: 90%;
    --container-max-width: 1200px;
    --menu-gap: 30px;
    --logo-height: 50px;
    --content-padding: 50px;
}

/* --------------- Index Slideshow --------------- */
.content {
    text-align: center;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 920px;
    overflow: hidden;
}

.slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 920px; /* 確保圖片高度一致 */
    object-fit: cover;
}

/* Slideshow 區塊樣式 */
.slide-text {
    position: absolute;
    top: 70%;
    right: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    max-width: 600px;
    opacity: 0; /* 初始隱藏 */
    transition: opacity 1s ease-in-out; /* 淡入淡出效果 */
}

.slide-text.fade-in {
    opacity: 1; /* 顯示文字 */
}

.slide-text h1 {
    font-size: 90px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.slide-text p {
    font-size: 40px;
    font-weight: lighter;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.slide-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s;
}

.primary-btn {
    border: #ffffff solid 2px;
    background-color: #ffffff;
    color: #000000;
}

.primary-btn:hover {
    background-color: #ffffff00;
    color: #ffffff;
}

.fa-arrow-right {
    margin-left: 10px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.arrow.left-arrow {
    left: 10px;
}

.arrow.right-arrow {
    right: 10px;
}

@media (max-width: 768px) {
    .slideshow {
        height: 600px; /* 調整手機版高度 */
    }

    .slide img {
        height: 600px; /* 調整手機版圖片高度 */
    }

    .slide-text {
        top: 60%;
        margin-right: 20px;
    }

    .slide-text h1 {
        font-size: 50px;
    }

    .slide-text p {
        font-size: 20px;
    }

    .btn {
        padding: 10px 80px;
        font-size: 16px;
    }

    .arrow {
        display: none;
    }
}

/* --------------- 品牌故事區 --------------- */
.story {
    background-color: #2c2c2c; /* 深色背景 */
    /* background-image: url('assets/images/pattern-bg.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.story-title {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

.story-description {
    font-size: 25px;
    font-weight: lighter;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e4e4e4;
}

.story-highlight {
    font-size: 25px;
    line-height: 1.8;
    font-weight: bold;
    color: #fff;
}

@media (max-width: 768px) {
    .story {
        padding: 60px 50px;
    }

    .story-title {
        font-size: 36px;
    }

    .story-description {
        font-size: 18px;
    }

    .story-highlight {
        font-size: 18px;
    }
}

/* --------------- Prices 區塊樣式 --------------- */
.prices {
    background-color: #e7e7e7;
    padding: 100px 20px;
    text-align: center;
}

.prices-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prices-title {
    text-align: left;
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.prices-content {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
    justify-content: center;
}

.prices-image img {
    width: 420px;
    height: auto;
    object-fit: cover;
}

.prices-list {
    display: grid;
    row-gap: 35px;
    width: 100%;
    max-width: 600px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
}

.price-name,
.price-value {
    font-size: 25px;
    font-weight: bold;
    color: #000;
}

@media (max-width: 768px) {
    .prices-title {
        font-size: 36px;
    }

    .prices-content {
        flex-direction: column;
        align-items: center;
    }

    .prices-image img {
        width: 100%;
        max-width: 420px;
    }

    .prices-list {
        max-width: 80%;
    }

    .price-name,
    .price-value {
    font-size: 20px;
}
}

/* --------------- About Us Page --------------- */
.Introduction {
    background-color: #2C2C2C; /* 深色背景 */
    /* background-image: url('assets/images/pattern-bg.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.Introduction-content {
    max-width: 900px;
    margin: 0 auto;
}

.Introduction-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.Introduction-text {
    font-size: 25px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e4e4e4;
}

@media screen and (max-width: 1000px) {
    .Introduction {
        padding: 60px 80px;
    }

    .Introduction-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .Introduction {
        padding: 60px 50px;
    }

    .Introduction-text {
        font-size: 18px;
    }

    .story-title {
        font-size: 29px;
    }
    .story-description {
        font-size: 18px;
    }
}

/* 特色服務區塊樣式 */
.special-services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 150px 300px;   
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.serve-container {
    margin: 0 auto;
    display: grid;
    row-gap: 150px;
    width: 100%;
}

.serve-content {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
    justify-content: center;
}

.serve-text {
    flex: 1;
    max-width: 50%;
    text-align: left;
    justify-content: center;
}

.serve-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.serve-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.serve-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.serve-image.up {
    display: none;
}

.serve-text ul li {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-top: 10px;
}

@media screen and (max-width: 1785px) {
    .special-services {
        flex-direction: column;
        padding: 100px;
    }

    .serve-text {
        max-width: 40%;
    }

    .serve-image img {
        max-width: 500px;
    }
}

@media screen and (max-width: 1100px) {
    .special-services {
        flex-direction: column;
        padding: 80px;
    }

    .serve-container {
        padding: 0 20px;
        row-gap: 100px;
    }

    .serve-content {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

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

    .serve-title {
        font-size: 28px;
    }

    .serve-image.up {
        display: block;
    }

    .serve-image.down {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    .special-services {
        padding: 80px 30px;
    }

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

    .serve-title {
        font-size: 24px;
    }

    .serve-image img {
        max-width: 100%;
    }
}

/* --------------- Serve Page --------------- */
.service {
    padding: 150px 20px 100px 20px;
    display: flex;
    justify-content: center;
}

/* 內容區相對定位，方便 ::before 畫框線 */
.service-container {
    display: flex;
    max-width: 1100px;
    width: 100%;
}

.service-container.right {
    display: flex;
    max-width: 1100px;
    width: 100%;
}

/* 外框線 */
.service-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* 文字區塊 */
.text-box {
    position: relative;
    z-index: 1;
    padding: 80px;
    padding-right: 200px;
    border: 1px solid #000000;
}

.right-text-box {
    position: relative;
    z-index: 1;
    padding: 80px 60px 80px 200px;
    border: 1px solid #000000;
}

/* service 文字 */
.testimonial-text {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
}

/* 分隔線 */
.separator {
    border: none;
    border-top: 1px solid #333;
    margin: 24px 0;
}

/* 名字／按鈕容器 */
.info-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 姓名與職稱 */
.info .name {
    font-weight: bold;
    font-size: 1.5rem;
}
.info .role {
    font-size: 1.1rem;
    color: #888;
    margin-top: 4px;
}

.service-text {
    width: 100%;
    max-width: 400px;
}

.service-text ul li{
    font-size: 1.1rem;
}

/* 圖片區塊 */
.image-box {
    position: relative;
    z-index: 2;               /* 在文字框上方 */
    flex-shrink: 0;
    margin-left: -170px;
    margin-top: -50px;
}

.right-image-box {
    position: relative;
    z-index: 2;               /* 在文字框上方 */
    flex-shrink: 0;
    margin-right: -150px;
    margin-top: -50px;
}
  
.image-box img {
    position: absolute;
    width: 550px;      /* 可依需求調整 */
    height: auto;
    border-radius: 4px;
}

.right-image-box img {
    display: block;
    width: 550px;             /* 可自行調整 */
    height: auto;
    border-radius: 4px;
}

.phone-image-box {
    display: none;
}

@media screen and (max-width: 1100px) {
    .phone-service {
        padding: 100px 20px 20px 20px;
    }
    
    .service {
        padding: 0 0 80px 0;
    }

    .service-container {
        flex-direction: column;
        align-items: center;
    }

    .text-box {
        padding: 40px;
        padding-right: 20px;
        width: 60%;
    }

    .right-text-box {
        padding: 40px;
        padding-right: 20px;
        width: 60%;
    }

    .image-box, .right-image-box {
        display: none;
    }

    .phone-image-box {
        display: block;
        z-index: 1;
        position: relative;
        width: 100%;
        max-width: 600px; /* 可自行調整 */
        height: auto;
        border-radius: 4px;
    }

    .phone-image-box img {
        width: 100%;
        height: auto;
        border-radius: 4px;
    }
    
}

@media screen and (max-width: 768px) {
    .service-container {
        padding: 0 20px;
    }

    .text-box {
        padding: 20px 40px;
        padding-right: 20px;
        width: 100%;
    }

    .right-text-box {
        padding: 20px;
        padding-right: 20px;
        width: 100%;
    }

    .phone-image-box {
        display: block;
        z-index: 1;
        position: relative;
        width: 100%;
        max-width: 600px; /* 可自行調整 */
        height: auto;
        border-radius: 4px;
    }

    .phone-image-box img {
        width: 100%;
        height: auto;
        border-radius: 4px;
    }
}

/* --------------- environment --------------- */
.gallery {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    margin: auto;
    height: 240vh;
}
.phone-gallery, .pad-gallery {
    display: none;
}
.gallery__strip {
    min-height: 100vh;
}
.gallery__strip__wrapper {
    flex: 0 0 100%;
    justify-content: flex-end;
    background: #222;
    border-right: 2px solid #333;
    position: relative;
}

@media (min-width: 500px) {
    .gallery__strip__wrapper {
        flex: 0 0 50%;
    }
}
@media (min-width: 950px) {
    .gallery__strip.one,
    .gallery__strip.three {
        transform: translateY(6%);
    }
    .gallery__strip.two,
    .gallery__strip.four {
        transform: translateY(8%);
    }
    .gallery__strip:hover {
        animation-play-state: paused;
    }
    .gallery__strip__wrapper {
        flex: 0 0 635px;
    }
}
.photo {
    position: relative;
    text-align: right;
    padding-bottom: 3rem;
}
.photo__image img {
    width: 90%;
    transform: translateX(30%);
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}
.photo__name {
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
    margin-top: -25px;
    transition: 0.4s ease-in-out 0.4s;
    position: relative;
    width: 100%;
}
.photo:hover .photo__image img {
    transform: translateX(0%);
}
.photo:hover .photo__name {
    color: #fff;
}

@media screen and (max-width: 1900px) {
    .gallery {
        height: 260vh;
    }

    .gallery__strip.one,
    .gallery__strip.three {
        transform: translateY(4%);
    }

    .gallery__strip.two,
    .gallery__strip.four {
        transform: translateY(6%);
    }

    .gallery__strip:hover {
        animation-play-state: paused;
    }

    .gallery__strip__wrapper {
        flex: 0 0 626.5px;
    }
}

@media screen and (max-width: 1879px) {
    .gallery, .phone-gallery {
        display: none;
    }

    .pad-gallery {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        overflow: hidden;
        margin: auto;
        height: 430vh;
    }

    .pad-gallery__strip {
        min-height: 100vh;
    }
    .pad-gallery__strip__wrapper {
        flex: 0 0 50%;
        justify-content: flex-end;
        background: #222;
        border-right: 2px solid #333;
        position: relative;
    }

    .pad-photo {
        position: relative;
        text-align: right;
        padding-bottom: 3rem;
    }
    .pad-photo__image img {
        width: 90%;
        transform: translateX(30%);
        transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    }
    .pad-photo__name {
        text-transform: uppercase;
        font-size: 40px;
        letter-spacing: 2px;
        color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: white;
        margin-top: -25px;
        transition: 0.4s ease-in-out 0.4s;
        position: relative;
        width: 100%;
    }
    .pad-photo:hover .pad-photo__image img {
        transform: translateX(0%);
    }
    .pad-photo:hover .pad-photo__name {
        color: #fff;
    }

    .pad-gallery__strip.one {
        transform: translateY(4%);
    }

    .pad-gallery__strip.two {
        transform: translateY(8%);
    }
    
}

@media screen and (max-width: 1000px) {
    .gallery, .pad-gallery {
        display: none;
    }
    .phone-gallery {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        overflow: hidden;
      }
      .phone-gallery__strip {
        margin: 7rem 0;
        min-height: 100vh;
      }
      .phone-gallery__strip__wrapper {
        flex: 0 0 100%;
        justify-content: flex-end;
        background: #222;
        border-right: 2px solid #333;
        position: relative;
      }
      
      .phone-photo {
        position: relative;
        text-align: right;
      }
      .phone-photo__image img {
        width: 85%;
        transform: translateX(30%);
        transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
      }
      .phone-photo__name {
        text-transform: uppercase;
        font-size: 40px;
        letter-spacing: 2px;
        color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: white;
        margin-top: -25px;
        transition: 0.4s ease-in-out 0.4s;
        position: relative;
        width: 100%;
      }
      
      .phone-photo.slide-in .phone-photo__image img {
        transform: scale(1.01) translateX(0%);
      }
      
      .phone-photo.slide-in .phone-photo__name {
        color: #fff !important;
        -webkit-text-stroke-color: transparent;
      }
}

/* --------------- FAQ --------------- */
.transition, .faq-text-box li i:before, .faq-text-box li i:after, .faq p {
    transition: all 0.25s ease-in-out;
}

.flipIn, .faq-text-box li {
    animation: flipdown 0.5s ease both;
}

.no-select, .faq-title {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.faq {
    min-height: 0;
    display: inline-block;
    position: relative;
    left: 50%;
    margin: 90px 0;
    transform: translate(-50%, 0);
    max-width: 800px;
    padding: 30px;
}

.faq .faq-title {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 1px;
    display: block;
    margin: 0;
    cursor: pointer;
}

.faq p {
    color: rgba(48, 69, 92, 0.8);
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    max-height: 800px;
    opacity: 1;
    transform: translate(0, 0);
    margin-top: 20px;
    z-index: 2;
}

.faq-text-box {
    list-style: none;
    perspective: 900;
    padding: 0;
    margin: 0;
}

.faq-text-box li {
    position: relative;
    padding: 45px;
    margin: 0 0 20px 0;
    border: 1px solid #dce7eb;
    border-radius: 20px;
}

.faq-text-box li:nth-of-type(1) {
    animation-delay: 0.5s;
}
.faq-text-box li:nth-of-type(2) {
    animation-delay: 0.75s;
}
.faq-text-box li:nth-of-type(3) {
    animation-delay: 1s;
}

.faq-text-box li i {
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 16px;
    margin-right: 45px;
    right: 0;
}

.faq-text-box li i:before, .faq-text-box li i:after {
    content: "";
    position: absolute;
    background-color: #ff6873;
    width: 3px;
    height: 9px;
}

.faq-text-box li i:before {
    transform: translate(-2px, 0) rotate(45deg);
}
.faq-text-box li i:after {
    transform: translate(2px, 0) rotate(-45deg);
}

.faq-text-box li input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}

.faq-text-box li input[type=checkbox]:checked ~ p {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
}

.faq-text-box li input[type=checkbox]:checked ~ i:before {
    transform: translate(2px, 0) rotate(45deg);
}
.faq-text-box li input[type=checkbox]:checked ~ i:after {
    transform: translate(-2px, 0) rotate(-45deg);
}

@keyframes flipdown {
    0% {
        opacity: 0;
        transform-origin: top center;
        transform: rotateX(-90deg);
    }
    5% {
        opacity: 1;
    }
    80% {
        transform: rotateX(8deg);
    }
    83% {
        transform: rotateX(6deg);
    }
    92% {
        transform: rotateX(-3deg);
    }
    100% {
        transform-origin: top center;
        transform: rotateX(0deg);
    }
}

@media screen and (max-width: 768px) {
    .faq {
        margin: 50px 0;
        padding: 20px;
    }

    .faq-text-box li {
        padding: 30px;
    }

    .faq .faq-title {
        font-size: 19px;
    }

    .faq p {
        font-size: 18px;
    }

    .faq-text-box li i {
        margin-top: 11px;
        margin-right: 20px;
    }

    .faq-text-box li input[type=checkbox] {
        width: 80%;
    }
    
}

/* --------------- Recruitment --------------- */
.recruitment-section {
    padding: 100px 0;
    /* background-color: var(--background-color); */
}

.recruitment-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.job-position {
    display: flex;
    margin-bottom: 200px;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    justify-content: center;
}

.job-position:last-child {
    margin-bottom: 0;
}

.job-position:hover .job-image img {
    transform: scale(1.1);
}

.job-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0));
}

.job-content {
    width: 70%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.job-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Times New Roman', serif;
}

.job-type {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f8f9fa;
    color: #666;
    border-radius: 4px;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.job-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 70px;
    padding-bottom: 40px;
}

.job-description h3 {
    font-size: 1.5em;
    color: #333;
    margin: 25px 0 15px;
    font-family: 'Times New Roman', serif;
}

.job-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.job-list li {
    font-size: 1.2em;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.job-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #333;
}

.job-box {
    border-top: 1px solid #a1a1a1;
    padding: 70px 0;
}

.job-text-two {
    display: grid;
    grid-template-columns: 2fr 2fr;
}

.fa-location-dot, .fa-phone {
    font-size: 1.9rem;
    margin-right: 11px;
}

.job-place h3 {
    font-size: 2em;
    color: #333;
}

.job-place li {
    list-style: none;
    font-size: 1.3em;
}

.job-map iframe {
    width: 100%;
    height: 300px;
}

.job-contact a {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-size: 1.2em;
}

.job-contact a :hover {
    color: #C76675;
}

@media screen and (max-width: 768px) {

    .recruitment-section {
        padding: 50px 0;
    }

    .recruitment-container {
        padding: 0 10px;
    }

    .job-position {
        flex-direction: column;
        margin-bottom: 100px;
    }

    .job-content {
        width: 100%;
        padding: 40px;
    }

    .job-description {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
    }

    .job-description h3 {
        font-size: 1.5em;
    }

    .job-list li {
        font-size: 1.2em;
    }

    .job-text-two {
        grid-template-columns: 1fr;
    }

    .job-text-two h3 {
        font-size: 1.5em;
    }

    .job-place h3 {
        font-size: 1.5em;
    }

    .job-place li {
        font-size: 1.2em;
    }

    .job-map iframe {
        height: 200px;
    }

    .job-contact a {
        font-size: 1.2em;
    }

    .job-contact a:hover {
        color: #C76675;
    }

}

/* --------------- Contact Us --------------- */
:root {
    --font-family-primary: "Vollkorn", serif;
    --font-family-secondary: "PT Sans", sans-serif;
    --font-size-title: 32px;
    --line-height-title: 1.4;
    --font-size-caption: 14px;
    --line-height-caption: 1.2;
    --color-text: #222022;
    --color-highlight-primary: #FFEF7E;
    --color-highlight-secondary: #B7F9E9;
    --border-radius-primary: 32px;
  }

.contact-us {
    max-width: 1200px;
    margin: 80px auto;
    background: var(--clr-card);
}

.contact {
    display: flex;
    gap: 20px;
    padding: 5rem;
    border-radius: 8px;
    justify-content: space-around;
    align-items: center;
}
.contact-section {
    display: grid;
    row-gap: 30px;
}

.contact-one, .contact-two {
    border-bottom: #919191d2 solid 1px;
    padding-bottom: 30px;
}

.contact-one h2, .contact-two h2, .contact-three h2 {
    font-size: 2rem;
    font-weight: bolder;
}

.contact-list {
    list-style: none;
    padding-top: 10px;
    margin: 0;
}

.contact-list li {
    font-size: 1.2rem;
    position: relative;
    line-height: 1.6;
}

.contact-list li a {
    text-decoration: none;
    color: #808080;
}

.contact-list li a:hover {
    color: var(--highlight-color);
}

.contact-one p, .contact-three p {
    font-size: 1.2rem;
    padding-top: 10px;
}

.contact-map {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
}

.contact-map iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .contact {
        flex-direction: column;
        padding: 2rem;
    }

    .contact-one, .contact-two, .contact-three {
        padding-bottom: 20px;
    }

    .contact-list li {
        font-size: 1rem;
    }

    .contact-map iframe {
        height: 300px;
    }
    
}

.parking-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 20px;
}

.parking-section h2 {
    font-size: 4rem;
    font-weight: bolder;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .parking-section h2 {
        font-size: 3rem;
    }
    .parking-section {
        padding: 20px 10px;
    }
    .parking-card {
        margin: 20px 0;
        padding: 20px;
    }
    .parking-card iframe {
        width: 100%;
        height: 200px;
    }
    
}

.parking-card {
    max-width: 960px;
    border-radius: var(--border-radius-primary);
    padding: 20px 20px 28px 20px;
    box-sizing: border-box;
    margin: 20px;
    display: flex;
    flex-direction: column;
  }
  @media (min-width: 576px) {
    .parking-card {
      flex-direction: row;
      align-items: center;
      margin: 40px;
      padding: 32px;
    }
  }
  
  .parking-card__image {
    width: 100%;
    max-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 18px;
  }

  .parking-card iframe {
    border: none;
  }

  @media (min-width: 576px) {
    .parking-card__image {
      width: 45%;
      max-height: none;
      min-height: 400px;
      margin-bottom: 0;
    }
  }
  
  @media (min-width: 576px) {
    .parking-card__content {
      width: 60%;
      padding-left: 50px;
    }
  }
  
  .parking-card__date {
    display: block;
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-caption);
    line-height: var(--line-height-caption);
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 6px;
  }
  @media (min-width: 576px) {
    .parking-card__date {
      margin-bottom: 8px;
    }
  }
  
  .parking-card__title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-title);
    line-height: var(--line-height-title);
    color: var(--color-text);
    box-decoration-break: clone;
    background-image: linear-gradient(90deg, var(--color-highlight-primary), var(--color-highlight-secondary));
    background-size: 100% 40%;
    background-repeat: no-repeat;
    background-position: 0 85%;
  }

  .parking-card__description {
    font-size: 20px;
    line-height: 1.6;
    padding-top: 20px;
  }

  @media screen and (max-width: 768px) {
    .parking-card {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .parking-card iframe {
        width: 60%;
        height: 200px;
    }

    .parking-card__content {
        padding-top: 20px;
        padding-left: 0;
    }
  }