/* Estate Planning Page Styles */
.estate-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.estate-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.estate-hero p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}

/* Premium Card */
.estate-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 2.5rem;
}

.estate-card-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.estate-card-title i {
    font-size: 1.75rem;
    margin-right: 0.75rem;
}

/* Custom Lists */
.estate-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.estate-list li {
    position: relative;
    padding-left: 2.25rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
}

.estate-list li::before {
    content: "\F26A"; /* check-circle-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 1.25rem;
}

.list-primary li::before { color: #3b82f6; }
.list-success li::before { color: #10b981; }
.list-warning li::before { color: #f59e0b; }
.list-danger li::before { color: #ef4444; }

/* Tables */
.estate-table-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.estate-table {
    margin-bottom: 0;
}

.estate-table th {
    background-color: #f8fafc;
    color: #1e293b;
    font-weight: 700;
    padding: 1rem 1.25rem;
    border-bottom: 2px solid #e2e8f0;
}

.estate-table td {
    padding: 1rem 1.25rem;
    color: #475569;
    vertical-align: middle;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 1.5rem;
}

/* Buttons */
.estate-btn {
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.estate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
