/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, #F2CA80, #D4A017);
    padding: 60px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-title h1 {
    font-size: 36px;
    margin: 0 0 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.page-title p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.page-title::before,
.page-title::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.page-title::before {
    top: -50px;
    left: 10%;
    transform: rotate(20deg);
}

.page-title::after {
    bottom: -50px;
    right: 10%;
    transform: rotate(45deg);
}

/* Package Plan Section Styling */
.package-plan-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.package-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.package-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-header {
    background: linear-gradient(135deg, #F2CA80, #D4A017);
    color: #fff;
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.package-header h3 {
    font-size: 28px;
    margin: 0;
    font-weight: 600;
}

.risk-free-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    background: #006064;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 0;
    transform: rotate(45deg) translateX(50px) translateY(-20px);
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.package-price {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.package-price h4 {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #666;
    line-height: 1.5;
}

.package-features li:last-child {
    margin-bottom: 0;
}

.package-features i {
    color: #8D6E63;
    margin-right: 10px;
    font-size: 16px;
    margin-top: 3px;
}

.package-cta {
    padding: 0 30px 30px;
    text-align: center;
}

/* Hexagonal accents */
.package-plan-section::before,
.package-plan-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(212, 160, 23, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.package-plan-section::before {
    top: -50px;
    left: -50px;
    transform: rotate(30deg);
}

.package-plan-section::after {
    bottom: -50px;
    right: -50px;
    transform: rotate(15deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .package-header h3 {
        font-size: 24px;
    }
    
    .package-price h4 {
        font-size: 20px;
    }
    
    .package-features {
        padding: 20px;
    }
    
    .package-features li {
        font-size: 14px;
    }
}
