.cw-calculator {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cw-calculator h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 28px;
}

.cw-description {
    color: #666;
    margin-bottom: 25px;
}

.cw-form-group {
    margin-bottom: 20px;
}

.cw-form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.cw-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.cw-input:focus {
    outline: none;
    border-color: #0073aa;
}

.cw-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.cw-button:hover {
    transform: translateY(-2px);
}

.cw-result {
    margin-top: 30px;
    padding: 25px;
    background: #f7f9fc;
    border-radius: 8px;
    text-align: center;
}

.cw-result-value {
    font-size: 42px;
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 10px;
}

.cw-result-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.cw-result-description {
    color: #666;
    line-height: 1.6;
}

.cw-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.cw-result-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
}

.cw-calculator-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.cw-calc-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.cw-calc-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.cw-calc-card h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.cw-calc-card p {
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
}

.cw-calc-button {
    display: inline-block;
    padding: 10px 25px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.cw-calc-button:hover {
    background: #005a87;
}

.cw-seo-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.cw-seo-content h2 {
    color: #1a1a1a;
    margin-top: 0;
    font-weight: 700;
}

.cw-seo-content h3 {
    color: #0073aa;
    margin-top: 25px;
    font-weight: 600;
}

.cw-seo-content p {
    color: #2a2a2a;
    line-height: 1.8;
    font-size: 16px;
}

.cw-seo-content ul {
    line-height: 1.8;
    color: #2a2a2a;
}

.cw-seo-content li {
    color: #2a2a2a;
    margin-bottom: 8px;
}

.cw-seo-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

.cw-seo-faq {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #ddd;
}

.cw-faq-item {
    margin-bottom: 20px;
}

.cw-faq-item strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.cw-faq-item p {
    margin: 0;
    color: #2a2a2a;
    line-height: 1.6;
}

.cw-notice {
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    color: #856404;
}

/* Showcase & Featured Cards */
.cw-showcase {
    margin: 30px 0;
}

.cw-calc-card.cw-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid #5a67d8;
}

.cw-calc-card.cw-featured h3 {
    color: white;
}

.cw-calc-card.cw-featured p {
    color: rgba(255, 255, 255, 0.9);
}

.cw-calc-card.cw-featured .cw-calc-button {
    background: white;
    color: #667eea;
}

.cw-calc-card.cw-featured .cw-calc-button:hover {
    background: #f0f0f0;
}

.cw-calc-card.cw-featured .cw-calc-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .cw-calculator-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .cw-calc-card {
        padding: 20px;
    }
    
    .cw-calc-icon {
        font-size: 36px;
    }
}
