* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111111;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.page-wrapper {
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px 100px;
}

.hero-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-stage {
    position: relative;
    width: 320px;
}

.side-menu {
    position: absolute;
    right: calc(100% + 60px);
    top: 90px;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.side-menu a {
    color: #d8cec0;
    text-decoration: none;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1.7;
    transition: color 0.2s ease;
}

.side-menu a:hover {
    color: #ffffff;
}

.flip-card {
    width: 320px;
    height: 450px;
    perspective: 1200px;
    cursor: pointer;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-card-front {
    background: #ffffff;
}

.flip-card-back {
    background: #ffffff;
    transform: rotateY(180deg);
}

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

.live-chat-prompt {
    position: absolute;
    left: calc(100% + 45px);
    top: 360px;
    width: 160px;
    color: #d8cec0;
    font-family: Georgia, serif;
    text-align: center;
}

.live-chat-prompt p {
    font-size: 26px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.chat-arrow {
    width: 65px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.chat-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.chat-embed-container {
    width: 320px;
    height: 450px;
    border: 1px solid #d8cec0;
    border-radius: 12px;
    overflow: hidden;
    background: #111111;
}

.chat-embed-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 768px) {
    .page-wrapper {
        padding: 40px 20px 80px;
    }

    .hero-stage {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .side-menu {
        position: static;
        width: auto;
        margin-bottom: 30px;
        align-items: center;
    }

    .side-menu a {
        font-size: 24px;
    }

    .live-chat-prompt {
        position: static;
        width: auto;
        margin-top: 25px;
        text-align: center;
    }

    .chat-arrow {
        width: 50px;
    }

    .flip-card {
        width: 280px;
        height: 395px;
    }

    .chat-section {
        margin-top: 50px;
    }

    .chat-embed-container {
        width: 280px;
        height: 395px;
    }
}