body {
    font-family: 'Noto Sans TC', sans-serif;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 30px;
    color: #382B73;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 22px;
}

h1,
h2,
h3,
li {
    font-weight: 500;
}

p {
    color: #323232;
}

.text-purple {
    color: #5951DA !important;
}

.btn-pink {
    background-color: #E591B8;
    color: #ffffff;
    transition: all 0.3s ease;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    overflow: hidden;
    position: relative;
}

.btn-pink::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, #f5eeb2da 0%, #E591B8 60%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.btn-pink:hover::before {
    opacity: 1;
}

.btn-pink:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 145, 184, 0.4);
}

.floating-card {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
    color: #333;
    font-size: 0.95rem;
}

.custom-col-left,
.custom-col-right {
    width: 100%;
}

.contact {
    width: 80%;
}


@media (min-width: 768px) {
    .custom-col-left {
        width: 38%;
    }

    .custom-col-right {
        width: 55%;
    }

    .contact {
        width: auto;
    }
}

@media (min-width: 992px) {
    .heading {
        margin-top: -30px;
    }
}

@media (max-width: 991px) {
    .heading {
        margin-top: .5rem;
    }
}

@media (max-width: 768px) {
    .btn-pink {
        text-decoration: none;
    }
}