
/* SITE MOD */

.container-header {background:#fff;}


/* Web Goodies Landing Page Styles */
/* Add these rules to your user.css or template stylesheet */

.webgoodies-hero {
    background: linear-gradient(135deg, #1f4e78 0%, #2e75b6 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
}

.webgoodies-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.webgoodies-hero p {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.webgoodies-hero p:last-child {
    font-size: 16px;
    margin-bottom: 0;
    opacity: 0.85;
}

.webgoodies-hero-cta {
    display: inline-block;
    background: #fff;
    color: #1f4e78;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 24px;
    transition: transform 0.2s;
    text-decoration: none;
}

.webgoodies-hero-cta:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.webgoodies-trust {
    background: white;
    padding: 60px 20px;
    border-bottom: 1px solid #eee;
}

.webgoodies-trust-intro {
    text-align: center;
    color: #1f4e78;
    font-weight: 600;
    margin-bottom: 40px;
}

.webgoodies-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.webgoodies-trust-item h3 {
    font-size: 24px;
    color: #1f4e78;
    margin-bottom: 8px;
}

.webgoodies-trust-item p {
    color: #666;
    font-size: 14px;
}

.webgoodies-features {
    background: white;
    padding: 80px 20px;
}

.webgoodies-section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1f4e78;
}

.webgoodies-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.webgoodies-feature-card {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2e75b6;
}

.webgoodies-feature-card h3 {
    font-size: 20px;
    color: #1f4e78;
    margin-bottom: 12px;
}

.webgoodies-feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.webgoodies-feature-link {
    color: #0066cc;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.webgoodies-feature-link:hover {
    text-decoration: underline;
}

.webgoodies-values {
    background: #f5f5f5;
    padding: 80px 20px;
}

.webgoodies-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.webgoodies-value-item h4 {
    font-size: 16px;
    color: #1f4e78;
    margin-bottom: 10px;
    font-weight: 600;
}

.webgoodies-value-item p {
    color: #666;
    font-size: 14px;
}

.webgoodies-categories {
    background: white;
    padding: 80px 20px;
    border-top: 1px solid #eee;
}

.webgoodies-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
}

.webgoodies-cat-card {
    background: white;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.webgoodies-cat-card h4 {
    color: #1f4e78;
    margin-bottom: 12px;
    font-size: 16px;
}

.webgoodies-cat-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.webgoodies-faq {
    background: white;
    padding: 80px 20px;
    border-top: 1px solid #eee;
}

.webgoodies-faq-item {
    max-width: 900px;
    margin: 0 auto 30px;
}

.webgoodies-faq-q {
    font-weight: 600;
    color: #1f4e78;
    font-size: 16px;
    margin-bottom: 8px;
    cursor: pointer;
}

.webgoodies-faq-a {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s;
}

.webgoodies-faq-a.hidden {
    max-height: 0;
}

.webgoodies-cta {
    background: linear-gradient(135deg, #2e75b6 0%, #185fa5 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: 0 -9999px;
    padding-left: calc(9999px + 20px);
    padding-right: calc(9999px + 20px);
}

.webgoodies-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.webgoodies-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.webgoodies-cta-btn {
    background: white;
    color: #1f4e78;
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    transition: transform 0.2s;
    text-decoration: none;
}

.webgoodies-cta-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .webgoodies-hero h1 {
        font-size: 32px;
    }

    .webgoodies-hero p {
        font-size: 16px;
    }

    .webgoodies-section-title {
        font-size: 28px;
    }

    .webgoodies-feature-grid {
        grid-template-columns: 1fr;
    }

    .webgoodies-cta h2 {
        font-size: 24px;
    }
}
