/* Variables CSS */
:root {
    --tempassur-primary: #2563eb;
    --tempassur-primary-hover: #1d4ed8;
    --tempassur-secondary: #f8fafc;
    --tempassur-text: #1e293b;
    --tempassur-text-light: #64748b;
    --tempassur-border: #e2e8f0;
    --tempassur-radius: 12px;
    --tempassur-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
.tempassur-modern {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--tempassur-text);
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.tempassur-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tempassur-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

/* Grid Layout */
.tempassur-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 1rem;
}

/* Sidebar Styles */
.tempassur-sidebar {
    background: white;
    border-radius: var(--tempassur-radius);
    padding: 1.5rem;
    box-shadow: var(--tempassur-shadow);
    height: fit-content;
}

.tempassur-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--tempassur-primary);
}

.tempassur-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tempassur-category {
    margin-bottom: 0.5rem;
}

.tempassur-category-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--tempassur-text);
    text-decoration: none;
    transition: all 0.2s;
}

.tempassur-category-link:hover {
    background-color: var(--tempassur-secondary);
    color: var(--tempassur-primary);
}

.tempassur-category.active .tempassur-category-link {
    background-color: var(--tempassur-primary);
    color: white;
}

/* Main Content */
.tempassur-main-content {
    background: white;
    border-radius: var(--tempassur-radius);
    padding: 2rem;
    box-shadow: var(--tempassur-shadow);
}

.tempassur-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.tempassur-card-description {
    color: var(--tempassur-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Form Elements */
.tempassur-form-group {
    margin-bottom: 2rem;
}

.tempassur-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tempassur-select {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--tempassur-border);
    border-radius: 8px;
    background-color: white;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.tempassur-select:focus {
    outline: none;
    border-color: var(--tempassur-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Button */
.tempassur-subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background-color: var(--tempassur-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.tempassur-subscribe-btn:hover {
    background-color: var(--tempassur-primary-hover);
    transform: translateY(-1px);
}

.tempassur-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

/* Footer Features */
.tempassur-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tempassur-feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--tempassur-radius);
    box-shadow: var(--tempassur-shadow);
}

.tempassur-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    color: var(--tempassur-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tempassur-grid {
        grid-template-columns: 1fr;
    }

    .tempassur-features {
        grid-template-columns: 1fr;
    }
}