    body {
    margin: 0;
    font-family: 'Merriweather', serif;
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
    }

    .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #00bbcc;
    padding: 1rem 2rem;
    }

    .site-header img {
    height: 50px;
    }

    .menu-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s;
    }

    .menu-links a:hover,
    .menu-links .active {
    color: #ffe4b5;
    }

    .cta-link {
    background: #fff;
    color: #00bbcc !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    }

    .culture-section {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
    }

    .culture-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #00bbcc;
    }

    .culture-section .intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
    }

    .culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    }

    .culture-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    }

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

    .culture-card h2 {
    color: #00bbcc;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    }

    .site-footer {
    background: #00bbcc;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    }



.signature {
    text-align: center;
    padding: 30px 10px;
    background-color: #f9f9f9;
    font-family: 'Merriweather', serif;
    color: #444;
    font-size: 1rem;
    opacity: 0;
    animation: fadeInSignature 1.8s ease-in-out forwards;
    }

    .signature span {
    font-weight: bold;
    color: #00bbcc;
    transition: text-shadow 0.3s ease, color 0.3s ease;
    }

    .signature span:hover {
    color: #0099aa;
    text-shadow: 0 0 10px #00bbcc;
    }

    @keyframes fadeInSignature {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    animation: fadeIn 0.3s ease-in-out;
    }

    .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 187, 204, 0.4);
    }

    #caption {
    margin: 15px auto;
    text-align: center;
    color: #ccc;
    font-size: 1rem;
    }

    .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    }

    .close:hover {
    color: #00bbcc;
    }

    @keyframes zoomIn {
    from {transform: scale(0.8);}
    to {transform: scale(1);}
    }

    @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
    }


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    @keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }

    @keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }

    .hero-section {
    animation: fadeIn 1s ease-in-out forwards;
    }
    .text-box {
    animation: slideInLeft 1s ease-in-out forwards;
    }
    .image-cafe {
    animation: slideInRight 1s ease-in-out forwards;
    }
    .powered-by-box,
    .powered-by-image,
    .things-we-enjoy {
    animation: fadeIn 1.2s ease-in-out;
    }

    .image-cafe img:hover,
    .powered-by-image img:hover {
    transform: scale(1.03);
    transition: transform 0.4s ease-in-out;
    }

    .text-box .cta-link,
    .menu-links .cta-link {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .text-box .cta-link:hover,
    .menu-links .cta-link:hover {
    transform: scale(1.05);
    background-color: #00bbcc;
    }

    .watch-video-link:hover {
    color: #00bbcc;
    transition: color 0.3s ease;
    }

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

    body {
    font-family: 'Merriweather', serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    }

    .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 2px solid #f1f1f1;
    position: sticky;
    top: 0;
    z-index: 10;
    }

    .logo img {
    height: 30px;
    }

    .menu-links {
    display: flex;
    gap: 25px;
    }

    .menu-links a {
    text-decoration: none;
    color: #444;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
    }

    .menu-links a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background-color: #00bbcc;
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
    }

    .menu-links a:hover::after,
    .menu-links .active::after {
    width: 100%;
    }

    .menu-links a:hover,
    .menu-links .active {
    color: #00bbcc;
    }

    .menu-links .cta-link {
    background-color: #00bbcc;
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease;
    }

    .hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background: linear-gradient(to right, #f6fefe, #e0f9fc);
    text-align: center;
    }

    .text-box h2 {
    font-size: 58px;
    margin-bottom: 20px;
    }

    .highlight {
    color: #00bbcc;
    font-weight: 600;
    }

    .text-box .cta-link {
    background-color: #00bbcc;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    }

    .text-box .cta-link:hover {
    background-color: #0099aa;
    }

    .image-cafe img {
    max-width: 800px;
    border-radius: 70px;
    margin: 20px;
    padding: 30px;
    }

    .powered-by {
    display: flex;
    padding: 60px 50px;
    background-color: #ffffff;
    gap: 40px;
    }

    .powered-by-box {
    flex: 1;
    }

    .powered-by-title h3 {
    font-size: 32px;
    margin-bottom: 15px;
    }

    .highlight2 {
    color: #00bbcc;
    }

    .subtext-powered-by p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    }

    .learn-more-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #00bbcc;
    font-weight: bold;
    text-decoration: none;
    }

    .learn-more-link:hover {
    text-decoration: underline;
    }

    .powered-by-row {
    display: flex;
    align-items: center;
    gap: 10px;
    }

    .watch-video-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    }

    .powered-circle img {
    width: 40px;
    height: 40px;
    }

    .powered-by-image {
    flex: 1;
    position: relative;
    }

    .powered-by-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    }

    .cooking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 187, 204, 0.1);
    border-radius: 12px;
    }

    .things-we-enjoy {
    padding: 60px 50px;
    background-color: #f5f5f5;
    }

    .one-two-threecontainer {
    margin-bottom: 30px;
    }

    .top-zone {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    }

    .top-left-box {
    background-color: #00bbcc;
    color: white;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    min-width: 60px;
    text-align: center;
    }

    .right-zone h4 {
    font-size: 22px;
    margin: 0 0 10px;
    }

    .right-zone p {
    font-size: 16px;
    margin: 0;
    }

    .destinations-list {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    }

    .destination {
    background-color: #fafafa;
    padding: 20px;
    border-left: 6px solid #00bbcc;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    }

    .destination:hover {
    transform: translateY(-5px);
    }

    .destination h3 {
    color: #00bbcc;
    margin-bottom: 10px;
    font-size: 1.6rem;
    }

    .destination p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
    }

    .destination img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    }

    @media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-links {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 10px;
    }

    .hero-section,
    .powered-by {
        flex-direction: column;
        padding: 30px 20px;
    }

    .image-cafe img,
    .powered-by-image img {
        max-width: 100%;
        margin-top: 20px;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .destination h3 {
        font-size: 1.4rem;
    }

    .destination img {
        max-height: 300px;
    }
    }

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

    body {
    font-family: 'Merriweather', serif;
    background-color: #ffffff;
    color: #222;
    line-height: 1.6;
    scroll-behavior: smooth;
    }

    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    @keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
    }

    .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: fadeInUp 0.6s ease forwards;
    }

    .logo img {
    height: 60px;
    }

    .menu-links {
    display: flex;
    gap: 25px;
    }

    .menu-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 5px 10px;
    position: relative;
    transition: all 0.3s ease;
    }

    .menu-links a:hover,
    .menu-links a.active {
    color: #00bbcc;
    }

    .menu-links a::after {
    content: "";
    height: 2px;
    background-color: #00bbcc;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    transition: width 0.3s ease;
    }

    .menu-links a:hover::after,
    .menu-links a.active::after {
    width: 100%;
    }

    .cta-link {
    background-color: #00bbcc;
    color: white !important;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    }

    .cta-link:hover {
    background-color: #0099aa;
    transform: scale(1.05);
    }

    .hero-section {
    background: linear-gradient(to right, #f6fefe, #e0f9fc);
    padding: 80px 20px;
    text-align: center;
    animation: fadeInUp 0.8s ease;
    }

    .text-box h2 {
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 20px;
    }

    .highlight {
    color: #00bbcc;
    font-weight: bold;
    }

    .hero-section p {
    font-size: 1.2rem;
    color: #444;
    }

    .destinations-list {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: fadeInUp 1s ease;
    }

    .destination {
    background-color: #f9f9f9;
    padding: 25px;
    border-left: 6px solid #00bbcc;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 187, 204, 0.1);
    transition: all 0.3s ease;
    animation: popIn 0.6s ease;
    }

    .destination:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 187, 204, 0.15);
    }

    .destination h3 {
    font-size: 1.8rem;
    color: #00bbcc;
    margin-bottom: 10px;
    }

    .destination p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    }

    .destination img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .destination img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 187, 204, 0.3);
    }

    @media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .menu-links {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 10px;
    }

    .hero-section h2 {
        font-size: 2.2rem;
    }

    .destination h3 {
        font-size: 1.4rem;
    }

    .destination img {
        max-height: 300px;
    }
    }

    .one-two-threecontainer {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .one-two-threecontainer:nth-child(1) {
    animation-delay: 0.3s;
    }
    .one-two-threecontainer:nth-child(2) {
    animation-delay: 0.6s;
    }
    .one-two-threecontainer:nth-child(3) {
    animation-delay: 0.9s;
    }

    .one-two-threecontainer:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 187, 204, 0.15);
    }

    .top-left-box {
    transition: transform 0.3s ease;
    }

    .one-two-threecontainer:hover .top-left-box {
    transform: scale(1.1);
    }
