/* Main CSS - Base Styles */
:root {
    --primary: #F98927;
    --secondary: #F6C545;
    --accent1: #8E418D;
    --accent2: #0098D4;
    --accent3: #00B0A6;
    --accent4: #F44C63;
    --accent5: #5B78B8;
    --accent6: #285C4D;
    --accent7: #B38E5D;
    --accent8: #9D2449;
    --accent9: #59B038;
    --dark: #333;
    --light: #fff;
    --gray: #f5f5f5;
    --dark-gray: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--accent6);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: #e07a1f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 137, 39, 0.3);
}

.btn-secondary {
    background-color: var(--accent2);
    color: var(--light);
}

.btn-secondary:hover {
    background-color: #0087c0;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}