/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

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

/* Links */
a {
    text-decoration: none;
}

/* Buttons */
button {
    cursor: pointer;
}

/* Search Input */
input[type="text"] {
    border: 1px solid #e2e8f0;
}

/* Cards */
.card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Gradient Overlay */
.gradient-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
}

/* 圖片容器 */
.service-card .relative {
    @apply relative overflow-hidden;
}

/* 熱門標籤 */
.hot-badge {
    @apply absolute top-2 right-2 bg-red-500 text-white text-sm px-2 py-1 rounded-md z-10;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 1.875rem;
    }
}