:root {
    --primary: #1D8C89;
    --primary-foreground: #ffffff;
    --background: #ffffff;
    --foreground: #1f2937;
    --muted-foreground: #6b7280;
    --accent: #f0f9ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 5rem 1rem;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.text-4xl {
    font-size: 2.25rem;
    font-weight: 700;
}

.text-3xl {
    font-size: 1.875rem;
    font-weight: 700;
}

.text-2xl {
    font-size: 1.5rem;
    font-weight: 600;
}

.text-xl {
    font-size: 1.25rem;
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gap-8 {
    gap: 2rem;
}

.relative {
    position: relative;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.overflow-hidden {
    overflow: hidden;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.group:hover .group-hover\:scale-102 {
    transform: scale(1.02);
}

.transition-transform {
    transition: transform 0.3s ease;
}

.transition-opacity {
    transition: opacity 0.3s ease;
}

.w-full {
    width: 100%;
}

.h-\[400px\] {
    height: 400px;
}

.h-\[300px\] {
    height: 300px;
}

.h-full {
    height: 100%;
}

.object-cover {
    object-fit: cover;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-from), var(--tw-gradient-to));
}

.from-primary\/90 {
    --tw-gradient-from: rgba(29, 140, 137, 0.9);
}

.to-transparent {
    --tw-gradient-to: transparent;
}

.opacity-0 {
    opacity: 0;
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

@media (min-width: 768px) {
    .md\:p-12 {
        padding: 3rem;
    }
}

.text-white {
    color: white;
}

.opacity-90 {
    opacity: 0.9;
}

.mt-16 {
    margin-top: 4rem;
}

.bg-accent {
    background-color: var(--accent);
}

.items-center {
    align-items: center;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.flex {
    display: flex;
}

.items-start {
    align-items: flex-start;
}

.gap-3 {
    gap: 0.75rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.bg-primary {
    background-color: var(--primary);
}

.rounded-full {
    border-radius: 9999px;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.mt-0\.5 {
    margin-top: 0.125rem;
}

.justify-center {
    justify-content: center;
}

/* Image placeholder styles */
.image-placeholder {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-hover:hover {
    transform: scale(1.02);
}