:root {
    --bg-primary: #FFFBF5;
    --bg-secondary: #F0EBE3;
    --accent: #C9A961;
    --text-main: #3D3D3D;
    --text-muted: #7A7A7A;
    --white: #FFFBF5;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
}

.section-padding {
    padding: 96px 24px;
}


.text-center {
    text-align: center;
    margin-bottom: 64px;
}

.title {
    font-size: 3rem;
    color: var(--text-main);
    margin: 0 0 24px 0;
    font-weight: 500;
}

.about-description {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Feature Cards */
.card {
    background-color: var(--bg-secondary);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 0 0 16px 0;
}

.card-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}