design final

This commit is contained in:
Aron Petau 2025-10-07 17:48:55 +02:00
parent 99a690972e
commit 2d69d919a6
9 changed files with 149 additions and 227 deletions

View file

@ -616,6 +616,109 @@ th {
color: #FFFFFF;
}
.info-box {
background-color: #e3f2fd;
border-left: 4px solid #1976d2;
border-radius: 8px;
padding: 1.5em;
margin: 1.5em 0;
line-height: 1.6;
}
.info-box p {
margin: 0.5em 0;
text-align: left;
}
.info-box p:first-child {
margin-top: 0;
}
.info-box p:last-child {
margin-bottom: 0;
}
.info-box a {
color: #1976d2;
font-weight: 600;
text-decoration: none;
}
.info-box a:hover {
text-decoration: underline;
}
/* Pricing Card - Prominent pricing display */
.pricing-card {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border: 2px solid #28a745;
border-radius: 12px;
padding: 2em;
margin: 2em 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.pricing-card h2 {
color: #28a745;
font-size: 1.8rem;
margin-bottom: 1.5em;
text-align: center;
}
.price-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5em;
margin-bottom: 1.5em;
}
.price-item {
background-color: white;
border-radius: 8px;
padding: 1.5em;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-item:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.price-item.bw {
border-top: 4px solid #6c757d;
}
.price-item.color {
border-top: 4px solid #fd7e14;
}
.price-label {
display: block;
font-size: 1.1rem;
color: #6c757d;
margin-bottom: 0.5em;
font-weight: 600;
}
.price-value {
display: block;
font-size: 2rem;
color: #1C1C1E;
font-weight: bold;
font-family: 'HealTheWebB', sans-serif;
}
.pricing-note {
text-align: center;
color: #6c757d;
font-size: 0.95rem;
margin: 0;
padding-top: 1em;
border-top: 1px solid #dee2e6;
}
.disclaimer-alert {
margin-top: 10px;
padding: 10px 15px;