70 lines
1.3 KiB
CSS
70 lines
1.3 KiB
CSS
.about-container {
|
|
padding: 80px 5% 40px;
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
color: #fff;
|
|
}
|
|
|
|
.about-hero {
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.about-hero h1 {
|
|
font-size: clamp(2rem, 5vw, 3.5rem);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.highlight {
|
|
color: var(--brand-blue, #0096c7);
|
|
}
|
|
|
|
.mission-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
margin-bottom: 80px;
|
|
}
|
|
|
|
.mission-card {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
padding: 30px;
|
|
border-radius: 12px;
|
|
border-left: 4px solid var(--brand-blue);
|
|
}
|
|
|
|
.mission-card h3 {
|
|
margin-bottom: 15px;
|
|
color: var(--brand-blue);
|
|
}
|
|
|
|
.delivery-philosophy {
|
|
background: rgba(0, 150, 199, 0.1);
|
|
padding: 40px;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.delivery-philosophy h2 {
|
|
margin-bottom: 25px;
|
|
text-align: center;
|
|
}
|
|
|
|
.delivery-philosophy ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.delivery-philosophy li {
|
|
margin-bottom: 15px;
|
|
padding-left: 25px;
|
|
position: relative;
|
|
}
|
|
|
|
.delivery-philosophy li::before {
|
|
content: "✓";
|
|
position: absolute;
|
|
left: 0;
|
|
color: var(--brand-blue);
|
|
font-weight: bold;
|
|
}
|