body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f0f2f5;
}

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

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

h1 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.calculator {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #f7931a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

button:hover {
    background-color: #e88a16;
}

.results {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

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

.result-item span:first-child {
    color: #666;
}

.result-item span:last-child {
    font-weight: bold;
    color: #333;
}

.affiliate-section {
    margin-top: 30px;
    text-align: center;
}

.affiliate-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.affiliate-image:hover {
    transform: scale(1.02);
}

.disclaimers {
    margin-top: 30px;
}

.disclaimer {
    font-size: 0.8em;
    color: #666;
    text-align: left;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 10px;
}

.financial-disclaimer {
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
}

footer {
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}