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

:root {
    --primary: #C4817A;
    --primary-dark: #A56961;
    --accent: #C9A96E;
    --accent-hover: #B8976A;
    --bg-primary: #F5F0EB;
    --bg-secondary: #E8DDD7;
    --bg-sage: #B8C4B8;
    --bg-card: #ffffff;
    --text-primary: #2B2B2B;
    --text-secondary: #5A5A5A;
    --border-color: #D4C4BE;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --shadow: 0 4px 15px rgba(196, 129, 122, 0.15);
    --shadow-hover: 0 8px 25px rgba(196, 129, 122, 0.25);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.flex {
    display: flex;
}

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

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

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hidden {
    display: none;
}

.opacity-0 {
    opacity: 0;
}

.transform-up {
    transform: translateY(30px);
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}