* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: #F5F5F7;
}

/* Header Styles */
.header {
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    max-width: 1410px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 53px;
}

.logo-section {
    display: flex;
    align-items: center;
    height: 53px;
}

.silversea-logo {
    height: 53px;
    width: auto;
    object-fit: contain;
}

.vrealab-logo {
    height: 53px;
    width: auto;
    object-fit: contain;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 53px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Roboto', sans-serif;
    text-transform: none;
    letter-spacing: 0.5px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Ensure anchor buttons look the same as button elements */
a.btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Logo link styling */
.logo-section a {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo-section a:hover {
    opacity: 0.8;
}

/* WhatsApp link styling */
.whatsapp-icon a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.whatsapp-icon a:hover {
    transform: scale(1.1);
}

/* Content-1 Styles */
.content-1 {
    width: 100%;
    height: 1268px;
    position: relative;
    overflow: hidden;
}

.content-1-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.content-1-background {
    width: 100%;
    height: 100%;
    position: relative;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.mask-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.people-image {
    width: 1000px;
    /* height: 695px; */
    /* object-fit: contain; */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
}

.content-1-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    padding-top: 78px;
}

.text-content {
    max-width: 1410px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    color: #000;
    margin: 0 auto;
}

.main-headline {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.8;
}

.description {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.white-box {
    margin: 0 auto 40px;
    max-width: 900px;
}

.box-text {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.box-text strong {
    font-weight: 700;
}

.box-text:last-child {
    margin-bottom: 0;
}

.experience-btn {
    background-color: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.experience-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 5;
}

.whatsapp-img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-content {
        max-width: 100%;
        padding: 0 20px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        height: auto;
    }
    
    .logo-section {
        justify-content: center;
        height: auto;
    }
    
    .silversea-logo,
    .vrealab-logo {
        height: 50px;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        height: auto;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        height: 50px;
    }
    
    /* Content-1 Responsive */
    .content-1 {
        height: 100vh;
        min-height: 1000px;
    }
    
    .content-1-container {
        height: 100%;
    }
    
    .content-1-background {
        height: 100%;
    }
    
    .bg-image,
    .mask-image {
        height: 100%;
    }
    
    .people-image {
        width: 80%;
        max-width: 600px;
    }
    
    .content-1-text {
        padding-top: 80px;
    }
    
    .main-headline {
        font-size: 36px;
    }
    
    .description {
        font-size: 17px;
    }
    
    .white-box {
        padding: 25px;
        margin: 0 20px 35px;
    }
    
    .box-text {
        font-size: 15px;
    }
    
    .experience-btn {
        padding: 14px 28px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .silversea-logo,
    .vrealab-logo {
        height: 40px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
        height: 45px;
    }
    
    /* Content-1 Responsive */
    .content-1 {
        height: 100vh;
        min-height: 800px;
    }
    
    .content-1-container {
        height: 100%;
    }
    
    .content-1-background {
        height: 100%;
    }
    
    .bg-image,
    .mask-image {
        height: 100%;
    }
    
    .people-image {
        width: 90%;
        max-width: 400px;
    }
    
    .content-1-text {
        padding-top: 60px;
    }
    
    .main-headline {
        font-size: 28px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .white-box {
        padding: 20px;
        margin: 0 15px 30px;
    }
    
    .box-text {
        font-size: 14px;
    }
    
    .experience-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .whatsapp-icon {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-img {
        width: 50px;
        height: 50px;
    }
}

/* Content-2 Styles */
.content-2 {
    width: 100%;
    background-color: #F5F5F7;
    padding: 80px 20px;
}

.content-2-title {
    text-align: center;
    margin-bottom: 60px;
}

.demo-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.demo-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.content-2-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.content-2-sendEmail {
    flex: 1;
}

.content-2-mapcont {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 12px;
    width: 776px;
    height: 775px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #999999;
    font-size: 16px;
}

/* Bitrix24 Form Styles */
.b24-wrapper {
    width: 100%;
}

/* Content-2 Responsive */
@media (max-width: 1024px) {
    .content-2-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
    }
    
    .content-2-sendEmail,
    .content-2-mapcont {
        flex: none;
        width: 100%;
    }
    
    .content-2-mapcont {
        width: 100%;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .content-2 {
        padding: 60px 15px;
    }
    
    .demo-title {
        font-size: 36px;
    }
    
    .demo-subtitle {
        font-size: 16px;
    }
    
    .content-2-container {
        padding: 30px;
        gap: 30px;
    }
    
    .content-2-mapcont {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .content-2 {
        padding: 40px 10px;
    }
    
    .content-2-title {
        margin-bottom: 40px;
    }
    
    .demo-title {
        font-size: 28px;
    }
    
    .demo-subtitle {
        font-size: 15px;
    }
    
    .content-2-container {
        padding: 20px;
        gap: 20px;
    }
    
    .content-2-mapcont {
        height: 300px;
    }
}

/* Content-3 Styles */
.content-3 {
    width: 100%;
    background-color: #FD8842;
    height: 1046px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-3-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.content-3-title {
    margin-bottom: 80px;
}

.why-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.9;
}

.advantages-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.advantages-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.advantages-row:last-child {
    margin-bottom: 0;
}

/* 第一行：3个卡片水平居中 */
.advantages-row-center {
    justify-content: center;
}

/* 第二行：4个卡片完整宽度 */
.advantages-row-full {
    justify-content: space-between;
}

.advantage-card {
    /* background-color: #ffffff; */
    border-radius: 16px;
    padding: 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: 246px;
    height: 279px;
    flex-shrink: 0;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.advantage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content-3 Responsive */
@media (max-width: 1140px) {
    .advantage-card {
        width: 197px;
        height: 223px;
    }
}

@media (max-width: 1024px) {
    .advantages-row {
        gap: 25px;
    }
    
    .content-3 {
        height: auto;
        padding: 80px 0;
    }
    
    .advantage-card {
        width: 160px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .content-3-container {
        padding: 0 15px;
    }
    
    .why-title {
        font-size: 36px;
    }
    
    .why-subtitle {
        font-size: 16px;
    }
    
    .content-3-title {
        margin-bottom: 60px;
    }
    
    .advantages-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .advantages-row-center {
        justify-content: center;
    }
    
    .advantages-row-full {
        justify-content: center;
    }
    
    .advantage-card {
        width: 160px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .content-3 {
        padding: 60px 0;
    }
    
    .content-3-container {
        padding: 0 10px;
    }
    
    .why-title {
        font-size: 28px;
    }
    
    .why-subtitle {
        font-size: 15px;
    }
    
    .content-3-title {
        margin-bottom: 40px;
    }
    
    .advantages-row {
        gap: 15px;
    }
    
    .advantage-card {
        width: 176px;
        height: 200px;
    }
}

/* Content-4 Styles */
.content-4 {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
}

.content-4-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    padding: 0 20px;
}

.content-4-container {
    width: 100%;
    display: flex;
    gap: 30px;
    overflow-x: auto; /* kept for programmatic scroll */
    padding: 0 20px;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch; /* momentum on iOS */
    scroll-snap-type: x proximity; /* snap to cards when near */
}

.content-4-container::-webkit-scrollbar {
    height: 0; /* hide scrollbar visuals */
}

.content-4-container::-webkit-scrollbar-track {
    background: transparent;
}

.content-4-container::-webkit-scrollbar-thumb {
    background: transparent;
}

.content-4-container::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

/* hide scrollbar for Firefox */
.content-4-container {
    scrollbar-width: none;
}

/* hide scrollbar for Edge/IE */
.content-4-container {
    -ms-overflow-style: none;
}

/* improve drag UX: while dragging, avoid text/image selection */
.content-4-container.is-dragging {
    cursor: grabbing;
}
.content-4-container.is-dragging,
.content-4-container.is-dragging * {
    user-select: none;
}

.content-4-card {
    flex-shrink: 0;
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 0 0 20px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

.content-4-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.gif-box {
    position: relative;
    width: 100%;
    height: 250px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.gif-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gif-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.mask-text {
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    margin: auto;
    height: fit-content;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* 悬停时隐藏蒙层和文案 */
.content-4-card:hover .gif-mask,
.content-4-card:hover .mask-text {
    opacity: 0;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    text-align: center;
}

/* Content-4 Responsive */
@media (max-width: 768px) {
    .content-4 {
        padding: 60px 0;
    }
    
    .content-4-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .content-4-container {
        gap: 20px;
        padding: 0 15px;
    }
    
    .content-4-card {
        width: 300px;
        padding: 0 0 15px 0;
    }
    
    .gif-box {
        height: 200px;
    }
    
    .mask-text {
        font-size: 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .content-4 {
        padding: 40px 0;
    }
    
    .content-4-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .content-4-container {
        gap: 15px;
        padding: 0 10px;
    }
    
    .content-4-card {
        width: 250px;
        padding: 0 0 12px 0;
    }
    
    .gif-box {
        height: 160px;
    }
    
    .mask-text {
        font-size: 18px;
    }
    
    .card-title {
        font-size: 16px;
    }
}

/* Content-5 Styles */
.content-5 {
    width: 100%;
    background-color: #ffffff;
    padding: 13px 37px;
}

.content-5-title {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.who-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.content-5-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Content-5 Responsive */
@media (max-width: 768px) {
    .content-5 {
        padding: 10px 25px;
    }
    
    .content-5-title {
        margin-bottom: 40px;
    }
    
    .who-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .content-5 {
        padding: 8px 20px;
    }
    
    .content-5-title {
        margin-bottom: 30px;
    }
    
    .who-title {
        font-size: 28px;
    }
}

/* Content-6 Styles */
.content-6 {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
    padding-top: 105px;
}

.content-6-title {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.educators-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.content-6-container {
    width: 100%;
    display: flex;
    /* max-width: 1100px; */
    gap: 30px;
    overflow-x: auto; /* kept for programmatic scroll */
    padding: 0 20px;
    background-color: #fff;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch; /* momentum on iOS */
    scroll-snap-type: x proximity; /* snap to cards when near */
}

.content-6-container::-webkit-scrollbar {
    height: 0; /* hide scrollbar visuals */
}

.content-6-container::-webkit-scrollbar-track {
    background: transparent;
}

.content-6-container::-webkit-scrollbar-thumb {
    background: transparent;
}

.content-6-container::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

/* hide scrollbar for Firefox */
.content-6-container {
    scrollbar-width: none;
}

/* hide scrollbar for Edge/IE */
.content-6-container {
    -ms-overflow-style: none;
}

.content-6-card {
    flex-shrink: 0;
    width: 700px;
    background-color: #ffffff;
    border-radius: 16px;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    overflow: hidden;
}

.content-6-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.content-6-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    user-select: none; /* 禁止选中图片 */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    pointer-events: none; /* 禁止图片的鼠标事件 */
    -webkit-user-drag: none; /* 禁止拖拽 */
    -khtml-user-drag: none; /* 禁止拖拽 */
    -moz-user-drag: none; /* 禁止拖拽 */
    -o-user-drag: none; /* 禁止拖拽 */
}

/* improve drag UX: while dragging, avoid text/image selection */
.content-6-container.is-dragging {
    cursor: grabbing;
}
.content-6-container.is-dragging,
.content-6-container.is-dragging * {
    user-select: none;
}

/* Content-6 Responsive */
@media (max-width: 768px) {
    .content-6 {
        padding: 60px 15px;
    }
    
    .content-6-title {
        margin-bottom: 40px;
    }
    
    .educators-title {
        font-size: 36px;
    }
    
    .content-6-container {
        gap: 20px;
        padding: 0 15px;
    }
    
    .content-6-card {
        width: 500px;
    }
}

@media (max-width: 480px) {
    .content-6 {
        padding: 40px 10px;
    }
    
    .content-6-title {
        margin-bottom: 30px;
    }
    
    .educators-title {
        font-size: 28px;
    }
    
    .content-6-container {
        gap: 15px;
        padding: 0 10px;
    }
    
    .content-6-card {
        width: 400px;
    }
}

/* Content-7 Styles */
.content-7 {
    width: 100%;
    background-color: #ffffff;
    /* padding: 100px 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-7-container {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.content-7-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.content-7-description {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    max-width: 553px;
    font-family: 'Space Grotesk', sans-serif;
}

.content-7-description strong {
    font-weight: 700;
}

.content-7-button {
    background-color: #FD8842;
    color: #ffffff;
    border: none;
    border-radius: 27px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.content-7-button:hover {
    background-color: #e67a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 136, 66, 0.3);
}

/* Content-7 Responsive */
@media (max-width: 768px) {
    .content-7 {
        padding: 80px 20px;
    }
    
    .content-7-title {
        font-size: 36px;
    }
    
    .content-7-description {
        font-size: 16px;
    }
    
    .content-7-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .content-7 {
        padding: 60px 15px;
    }
    
    .content-7-title {
        font-size: 28px;
    }
    
    .content-7-description {
        font-size: 14px;
    }
    
    .content-7-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Content-8 Styles */
.content-8 {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-8-container {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.content-8-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.content-8-description {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    font-family: 'Space Grotesk', sans-serif;
}

.content-8-button {
    background-color: #FD8842;
    color: #ffffff;
    border: none;
    border-radius: 27px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-top: 30px;
}

.content-8-button:hover {
    background-color: #e67a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 136, 66, 0.3);
}

/* Content-8 Responsive */
@media (max-width: 768px) {
    .content-8 {
        padding: 80px 20px;
    }
    
    .content-8-title {
        font-size: 36px;
    }
    
    .content-8-description {
        font-size: 16px;
    }
    
    .content-8-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .content-8 {
        padding: 60px 15px;
    }
    
    .content-8-title {
        font-size: 28px;
    }
    
    .content-8-description {
        font-size: 14px;
    }
    
    .content-8-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Footer Styles */
.footer {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 126px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /* background-color: #1e3a8a; */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.social-icon img {
    width: 100%;
    height: 100%;
    /* filter: brightness(0) invert(1); */
}

.footer-right {
    flex: 1;
    margin-left: 60px;
}

.contact-columns {
    display: flex;
    gap: 60px;
}

.contact-column {
    flex: 1;
}

.contact-region {
    margin-bottom: 30px;
}

.region-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.footer-bottom {
    /* border-top: 1px solid #e5e7eb; */
    padding-top: 20px;
}

.footer-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin-bottom: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link {
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #000000;
}

.footer-separator {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Space Grotesk', sans-serif;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-right {
        margin-left: 0;
    }
    
    .contact-columns {
        gap: 40px;
    }
    
    .footer-social {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 30px 20px;
    }
    
    .contact-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 15px 30px 15px;
    }
    
    .footer-container {
        padding: 20px 15px;
    }
    
    .footer-social {
        gap: 8px;
        margin-top: 30px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon img {
        width: 100%;
        height: 100%;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .region-title {
        font-size: 14px;
    }
}

/* Additional button link styling */
a.experience-btn,
a.content-7-button,
a.content-8-button {
    text-decoration: none;
    display: inline-block;
}