
:root {
    --primary: #1D8C89;
    --primary-foreground: #ffffff;
    --muted-foreground: #6b7280;
    --accent: #f0f9ff;
    --background: #ffffff;
    --foreground: #1f2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.hero {
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

section {
    padding: 8rem 1rem 5rem;
    overflow: hidden;
}

.grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.inline-block {
    display: inline-block;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.bg-accent {
    background-color: var(--accent);
}

.rounded-full {
    border-radius: 9999px;
}

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

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.75rem;
    }
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

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

.max-w-lg {
    max-width: 32rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.gap-3 {
    gap: 0.75rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.text-primary {
    color: var(--primary);
}

.flex-col {
    flex-direction: column;
}

.sm\:flex-row {
    flex-direction: row;
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

.gap-4 {
    gap: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.button-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.hero-button-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.hero-button-primary:hover {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.hero-button-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.hero-button-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}

.transition-transform {
    transition: transform 0.2s ease;
}

.ml-2 {
    margin-left: 0.5rem;
}

.relative {
    position: relative;
}

.rounded-2xl {
    border-radius: 1rem;
}

.overflow-hidden {
    overflow: hidden;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.w-full {
    width: 100%;
}

.h-\[500px\] {
    height: 500px;
}

.object-cover {
    object-fit: cover;
}

.absolute {
    position: absolute;
}

.-bottom-6 {
    bottom: -1.5rem;
}

.-left-6 {
    left: -1.5rem;
}

.bg-primary {
    background-color: var(--primary);
}

.text-primary-foreground {
    color: var(--primary-foreground);
}

.p-6 {
    padding: 1.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.opacity-90 {
    opacity: 0.9;
}

.image-placeholder {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

#quote-calculator, #how-it-works {
    padding: 4rem 1rem;
    text-align: center;
}

#quote-calculator h2, #how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}