
:root {
    --primary-color: #2c3e50;
    --accent-color: #27ae60;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: var(--white);
    line-height: 1.6;
}
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}
.navbar-brand { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 60px; width: auto; }
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}
.hero h1 { font-weight: 800; font-size: 2.8rem; color: var(--primary-color); }

.table-container {
    margin-top: -50px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.coming-soon-content {
    filter: blur(5px) grayscale(70%);
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}
.coming-soon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    text-align: center;
    z-index: 10;
    border: 2px solid var(--accent-color);
    width: 85%;
    max-width: 500px;
}
.coming-soon-overlay h4 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
}

.table thead th { border: none; color: #777; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; }
.btn-action { background-color: var(--accent-color); color: white; border-radius: 50px; padding: 8px 20px; font-weight: 600; text-decoration: none; transition: 0.3s; display: inline-block; }

.step-card { border: none; text-align: center; padding: 30px; background: #fff; border-radius: 15px; height: 100%; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.step-number { width: 50px; height: 50px; line-height: 50px; background-color: var(--accent-color); color: white; border-radius: 50%; margin: 0 auto 20px; font-weight: 700; }
.info-card { border: 1px solid #eee; border-radius: 12px; padding: 25px; margin-bottom: 20px; height: 100%; background: #fff; transition: 0.3s; }
.feature-list { list-style: none; padding: 0; margin-top: 15px; }
.feature-list li { margin-bottom: 8px; padding-left: 25px; position: relative; font-size: 0.95rem; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-color); font-weight: bold; }
.calc-box { background-color: var(--bg-light); border-radius: 15px; padding: 40px; border: 1px solid #eef0f2; }
.blog-card { border: none; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border-radius: 10px; overflow: hidden; margin-bottom: 30px; }
.blog-card img { height: 200px; object-fit: cover; width: 100%; background: #eee; }
.faq-section { padding: 60px 0; }
.faq-item { margin-bottom: 20px; padding: 20px; border-radius: 12px; background: #fff; border: 1px solid #eee; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.faq-question { font-weight: 700; color: var(--primary-color); margin-bottom: 10px; display: block; font-size: 1.1rem; }
.faq-answer { font-size: 0.95rem; color: #555; }
footer { background: var(--primary-color); color: white; padding: 50px 0; margin-top: 50px; }
.page-header { padding: 60px 0; background-color: var(--bg-light); border-bottom: 1px solid #eee; margin-bottom: 40px; }
.content-box { background: var(--white); border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); padding: 40px; border: 1px solid #eef0f2; }
.disclaimer-box { background: #fff3cd; border-left: 5px solid #ffc107; padding: 15px; margin-top: 20px; font-size: 0.85rem; color: #856404; border-radius: 5px; }

input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 24px; width: 24px; border-radius: 50%; background: var(--accent-color); cursor: pointer; margin-top: -8px; box-shadow: 0 0 5px rgba(0,0,0,0.3); border: 2px solid white; }
input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 8px; cursor: pointer; background: #d3d3d3; border-radius: 5px; }

.result-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 1rem; color: #555; }
.result-total { border-top: 2px solid #2c3e50; padding-top: 15px; margin-top: 15px; font-size: 1.3rem; font-weight: 800; color: #2c3e50;}
