:root {
    --primary: #f3ba2f;
    --primary-dark: #d9a52a;
    --secondary: #1e2329;
    --bg-light: #f8f9fa;
    --text-main: #333;
    --text-muted: #666;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background: var(--white);
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

.ct-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ct-btn-primary {
    background: var(--primary);
    color: #000;
    border: none;
}

.ct-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.ct-btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.ct-btn-outline:hover {
    background: var(--primary);
    color: #000;
}

