.services-page {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.8rem;
    color: #1D1D3A;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #1D1D3A;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    font-size: 2.2rem;
    margin-top: 4rem;
    margin-bottom: 2.5rem;
    color: #1D1D3A;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #FFFBF2;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(29, 29, 58, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(29, 29, 58, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(29, 29, 58, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #1573D4;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(21, 115, 212, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1D1D3A;
}

.service-card p {
    color: #1D1D3A;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    min-height: 70px;
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.combo-card {
    background: #FFFBF2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(29, 29, 58, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.combo-card.featured {
    border-color: #1573D4;
    transform: scale(1.05);
}

.combo-card:hover {
    transform: translateY(-5px) scale(1.02);
     box-shadow: 0 20px 40px rgba(29, 29, 58, 0.12);
}

.combo-card.featured:hover {
    transform: translateY(-10px) scale(1.08);
}

.combo-header {
    padding: 2rem;
    text-align: center;
    background: rgba(29, 29, 58, 0.05);
    position: relative;
}

.combo-card.featured .combo-header {
    background: #1573D4;
    color: #FFFBF2;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #B6D23C;
    color: #1D1D3A;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.combo-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.combo-card.featured .combo-header h3 {
    color: #FFFBF2;
}

.combo-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1573D4;
}

.combo-card.featured .combo-price {
    color: #FFFBF2;
}

.combo-price span {
    font-size: 1rem;
    font-weight: normal;
    color: #1D1D3A;
    opacity: 0.7;
}

.combo-card.featured .combo-price span {
    color: rgba(255, 251, 242, 0.8);
}

.combo-body {
    padding: 2rem;
}

.combo-body ul {
    list-style: none;
    margin-bottom: 2rem;
}

.combo-body ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #1D1D3A;
}

.combo-body ul li i {
    color: #B6D23C;
}