:root {
    --primary-yellow: #FFD166;
    --secondary-yellow: #FFD166;
    --light-yellow: #FFF9E6;
    --primary-green: #2E8B57;
    --secondary-green: #3CB371;
    --wood-brown: #8B4513;
    --light-brown: #D2B48C;
    --white: #FFF;
    --text-dark: #333;
    --text-light: #666;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 60px 0;
}

/* Custom classes */
.color-red {
    color: red !important;
    font-size: 30px !important;
}

.dc {
    color: red !important;
    font-size: 25px !important;
    font-weight: 700;
    font-style: normal;
}