37091-vm/staticfiles/css/custom.css
2025-12-20 15:20:08 +00:00

113 lines
2.0 KiB
CSS

/* Feature Page Specific Styles */
.page-header {
padding: 160px 60px 80px;
text-align: center;
border-bottom: 1px solid var(--border-lighter);
}
.header-content .subtitle {
font-size: 20px;
color: var(--text-secondary);
max-width: 700px;
margin: 0 auto;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
padding: 80px 60px;
max-width: 1200px;
margin: 0 auto;
}
.feature-card {
background: var(--bg-card);
border: 1px solid var(--border-lighter);
border-radius: 12px;
padding: 40px;
text-align: center;
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
border-color: var(--border-light);
}
.feature-icon {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
margin: 0 auto 24px;
}
.feature-card h3 {
font-size: 22px;
margin-bottom: 12px;
}
.feature-card p {
color: var(--text-secondary);
line-height: 1.7;
}
/* Footer */
.footer {
background: var(--bg-card);
padding: 60px 60px 30px;
border-top: 1px solid var(--border-lighter);
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
max-width: 1200px;
margin: 0 auto 40px;
}
.footer-about h3 {
font-size: 20px;
margin-bottom: 12px;
}
.footer-about p {
color: var(--text-secondary);
}
.footer-links h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 16px;
}
.footer-links ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover {
color: var(--text-primary);
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid var(--border-lighter);
color: var(--text-muted);
font-size: 14px;
}