/* Custom Styles for Infos Page */

.info-hero {
    background: var(--section-bg-color);
    padding: 3rem 1rem;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.info-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.step-number {
    background: var(--primary-color);
    color: var(--white-color);
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    flex-shrink: 0;
}

.step-card h3 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.step-card p {
    font-size: 0.95rem;
}

.price-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .05);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-header {
    background: var(--primary-color);
    padding: 1rem;
    text-align: center;
}

.price-header h3 {
    color: var(--white-color);
    margin: 0;
    font-size: 1.2rem;
}

.price-body {
    padding: 1.5rem;
    text-align: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--p-color);
    font-style: italic;
}

.custom-feature {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-feature:last-child {
    border-bottom: none;
}

.info-section {
    margin-bottom: 4rem;
}

.info-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.info-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.care-tips ul {
    list-style: none;
    padding: 0;
}

.care-tips li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.care-tips li::before {
    content: "\F26E";
    /* bi-check-circle-fill */
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .info-hero h1 {
        font-size: 2rem;
    }

    .step-card {
        margin-bottom: 2rem;
    }
}

/* Margin Constraints (Inspired by Legal Page) */
.constrained-content {
    /* Large screens: Default behavior */
}

@media (max-width: 1000px) and (orientation: portrait) {
    .constrained-content {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media (max-width: 500px) {
    .constrained-content {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* Harmonizing Fonts */
.info-section p,
.step-card p,
.care-tips li,
.info-block p {
    font-size: 1rem;
    line-height: 1.6;
}