:root {
    --primary-color: #8B4513;
    --secondary-color: #FFD700;
    --bg-color: #f9fafb;
    --bg-alt: #ffffff;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --border-color: #e5e7eb;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1 { font-size: 2.5rem; }
h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 1.5rem;
}
h3 { font-size: 1.5rem; color: #2d3748; }

p { margin-bottom: 1rem; color: var(--text-muted); }

a { color: var(--primary-color); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--secondary-color); }

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

.bg-light { background-color: var(--bg-alt); }
.content-section { padding: 60px 0; }

.site-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.logo .highlight { color: var(--secondary-color); }

.site-header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.site-header nav a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.site-header nav a:hover { color: var(--secondary-color); }

#intro {
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://images.unsplash.com/photo-1533591380348-14193919c58d?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.lead {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.feature-card:hover { transform: translateY(-5px); }

.info-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-box h3 { color: #856404; font-size: 1.2rem; }
.info-box ul { list-style: none; margin-top: 10px; }
.info-box li { margin-bottom: 5px; color: #856404; }

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; cursor: pointer; }

.site-footer {
    background-color: #1a202c;
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

.site-footer p { color: #a0aec0; font-size: 0.9rem; }
.disclaimer { font-style: italic; margin-top: 10px; font-size: 0.8rem; }

@media (max-width: 768px) {
    .site-header .container { flex-direction: column; gap: 15px; }
    .site-header nav ul { flex-wrap: wrap; justify-content: center; }
    h1 { font-size: 2rem; }
}
.myButton {
    background:linear-gradient(to bottom, #d18f0c 5%, #d18f0c 100%);
    background-color:#d18f0c;
    border-radius:28px;
    border:1px solid #d18f0c;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Georgia;
    font-size:17px;
    padding:16px 31px;
    text-decoration:none;
    text-shadow:0px 1px 0px #d18f0c;
}
.myButton:hover {
    background:linear-gradient(to bottom, #d18f0c 5%, #d18f0c 100%);
    background-color:#d18f0c;
}
.myButton:active {
    position:relative;
    top:1px;
}