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

/* Section Padding */
.section-padding {
    padding: 80px 20px;
}

/* Container */
.max-w-7xl {
    max-width: 1280px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Background */
.bg-white {
    background-color: #ffffff;
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Margins */
.mb-16 {
    margin-bottom: 64px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-3 {
    margin-bottom: 12px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mt-12 {
    margin-top: 48px;
}

/* Typography */
.text-4xl {
    font-size: 2.25rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

/* Colors */
.text-primary {
    color: #194f94;
}

.text-gray-600 {
    color: #6b7280;
}

.text-gray-800 {
    color: #1f2937;
}

.text-white {
    color: #ffffff;
}

.text-yellow-400 {
    color: #fbbf24;
}

.text-gradient {
    background: linear-gradient(135deg, #194f94, #0090d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Max Width */
.max-w-3xl {
    max-width: 768px;
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-8 {
    gap: 32px;
}

.gap-2 {
    gap: 8px;
}

/* Card Styles */
.card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Image Container */
.image-container {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Badges */
.rating-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: #0090d0;
    color: white;
    border-radius: 8px;
    padding: 4px 12px;
    font-weight: 600;
}

/* Content */
.card-content {
    padding: 24px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #194f94;
    margin-bottom: 12px;
}

/* Info Items */
.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    margin-bottom: 8px;
}

.info-item i {
    width: 16px;
    height: 16px;
    font-size: 14px;
}

/* Highlights */
.highlights-container {
    margin-bottom: 24px;
}

.highlights-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #194f94;
    margin-bottom: 8px;
}

.highlights-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-tag {
    font-size: 0.75rem;
    background-color: #ecf3fa;
    color: #194f94;
    padding: 4px 8px;
    border-radius: 50px;
}

/* Buttons */
.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #194f94, #0090d0);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(25, 79, 148, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #194f94;
    border: 2px solid #194f94;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #194f94;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .grid-cols-1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .text-4xl {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .grid-cols-1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .text-4xl {
        font-size: 3rem;
    }
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.6s ease forwards;
}

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

/* Star Fill */
.star-filled {
    color: #fbbf24;
}

/* Space Between Items */
.space-y-2 > * + * {
    margin-top: 8px;
}
