/* HTMLTrust custom styles */

/* Signed section element (custom HTML element for content signatures) */
signed-section {
    display: block;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.85;
}

.btn.primary {
    background-color: #fff;
    color: #2c3e50;
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f1f5f9;
    border-radius: 8px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.problem-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.code-preview {
    margin: 2rem 0;
    text-align: left;
    background: #2c3e50;
    color: #e0e0e0;
    padding: 1.5rem;
    border-radius: 4px;
    overflow-x: auto;
    font-family: monospace;
    line-height: 1.5;
}

.get-started {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f1f5f9;
    border-radius: 8px;
    text-align: center;
}
