:root {
    --primary: #ED5020;
    /* Your brand color */
    --secondary: #333;
    /* Dark gray for text */
    --light: #ffffff;
    /* White background */
    --dark: #222;
    /* Almost black for headings */
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--secondary);
    background: var(--light);
}

header {
    background: var(--light);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-container img {
    height: 60px;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 0;
}

.btn {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    background: #d6461a;
    /* Slightly darker on hover */
    transform: translateY(-2px);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-btn::after {
    content: " + ";
}

.toggle-btn.expanded::after {
    content: " − ";
}

.feature-card,
.cost-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hidden {
    display: none;
}

#calculator, #costs {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-sizing: border-box;
}

input[type="number"], input[type="checkbox"] {
    margin: 10px 0;
}

label {
    display: block;
    margin-bottom: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    table-layout: fixed;
}

th,
td {
    border: 1px solid #eee;
    padding: 12px;
    text-align: left;
    word-wrap: break-word;
}

th {
    background: var(--primary);
    color: white;
}

input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0.5rem 0;
}

.highlight {
    color: var(--primary);
    font-weight: bold;
}

.process-step {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.step-number {
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}