|
/* Styles for the Pricing Page (pricing.html) */
|
|
|
|
.pricing-hero {
|
|
text-align: center;
|
|
padding: 40px 20px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.pricing-hero h1 {
|
|
font-size: 3rem;
|
|
color: var(--text-color);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.pricing-hero p {
|
|
font-size: 1.2rem;
|
|
color: var(--light-text-color);
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.pricing-toggle {
|
|
display: inline-flex;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
border: 1px solid var(--border-color);
|
|
}
|
|
|
|
.pricing-toggle .btn-toggle {
|
|
padding: 10px 20px;
|
|
border: none;
|
|
background-color: var(--card-background);
|
|
color: var(--text-color);
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease, color 0.3s ease;
|
|
}
|
|
|
|
.pricing-toggle .btn-toggle.active {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
.pricing-toggle .btn-toggle:hover:not(.active) {
|
|
background-color: var(--background-color);
|
|
}
|
|
|
|
.pricing-tiers {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 30px;
|
|
max-width: 1200px;
|
|
margin: 0 auto 60px auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.pricing-card {
|
|
background-color: var(--card-background);
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 15px var(--shadow-color);
|
|
padding: 30px;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
|
|
}
|
|
|
|
.pricing-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.pricing-card.featured {
|
|
border: 2px solid var(--primary-color);
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
.pricing-card h3 {
|
|
font-size: 1.8rem;
|
|
color: var(--text-color);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.pricing-card .price {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.pricing-card .price span {
|
|
font-size: 1.2rem;
|
|
font-weight: 400;
|
|
color: var(--light-text-color);
|
|
}
|
|
|
|
.pricing-card ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin-bottom: 30px;
|
|
text-align: left;
|
|
}
|
|
|
|
.pricing-card ul li {
|
|
margin-bottom: 10px;
|
|
color: var(--text-color);
|
|
font-size: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.pricing-card ul li::before {
|
|
content: '✓'; /* Checkmark icon */
|
|
color: var(--accent-color);
|
|
margin-right: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.pricing-card .btn-primary {
|
|
margin-top: auto; /* Push button to the bottom */
|
|
width: 100%;
|
|
padding: 12px 20px;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.pricing-faq {
|
|
max-width: 800px;
|
|
margin: 0 auto 60px auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.pricing-faq h2 {
|
|
text-align: center;
|
|
font-size: 2.5rem;
|
|
color: var(--text-color);
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.faq-item {
|
|
background-color: var(--card-background);
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px var(--shadow-color);
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.faq-item h3 {
|
|
font-size: 1.3rem;
|
|
color: var(--text-color);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.faq-item p {
|
|
font-size: 1rem;
|
|
color: var(--light-text-color);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.pricing-hero h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
.pricing-hero p {
|
|
font-size: 1rem;
|
|
}
|
|
.pricing-tiers {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.pricing-card.featured {
|
|
transform: none; /* Remove scale on small screens */
|
|
}
|
|
.pricing-faq h2 {
|
|
font-size: 2rem;
|
|
}
|
|
} |