102 lines
1.9 KiB
CSS
102 lines
1.9 KiB
CSS
/* Visa.ai Custom Styles */
|
|
|
|
:root {
|
|
--primary-color: #0A2540;
|
|
--accent-color: #00D4B3;
|
|
--background-color: #F6F9FC;
|
|
--text-color: #333;
|
|
--heading-font: 'Poppins', sans-serif;
|
|
--body-font: 'Lato', sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--body-font);
|
|
background-color: var(--background-color);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--heading-font);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--accent-color);
|
|
border-color: var(--accent-color);
|
|
font-weight: 600;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 0.5rem;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #00bfa5;
|
|
border-color: #00bfa5;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(135deg, var(--primary-color), #1e3a5f);
|
|
color: white;
|
|
padding: 6rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero-section p {
|
|
font-size: 1.25rem;
|
|
max-width: 600px;
|
|
margin: 1rem auto;
|
|
}
|
|
|
|
.comparison-section {
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.comparison-form {
|
|
background: white;
|
|
padding: 2rem;
|
|
border-radius: 0.75rem;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.comparison-results {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.comparison-table {
|
|
background: white;
|
|
border-radius: 0.75rem;
|
|
overflow: hidden;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.comparison-table th {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.comparison-table .table-group-divider {
|
|
border-top-color: #d1d9e6;
|
|
}
|
|
|
|
.comparison-table td, .comparison-table th {
|
|
vertical-align: middle;
|
|
padding: 1.25rem 1rem;
|
|
}
|
|
|
|
.form-label {
|
|
font-weight: 600;
|
|
font-family: var(--heading-font);
|
|
}
|
|
|
|
.form-select {
|
|
min-height: 400px;
|
|
}
|