/* Package Card Styling */
.package-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #00695c;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

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

.package-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #00695c;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-header {
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

.package-body {
    padding: 24px;
    flex-grow: 1;
}

.package-footer {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

/* Feature Lists */
.feature-list {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300695c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpath d='M22 4L12 14.01l-3-3'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.ideal-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.ideal-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
}

.ideal-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300695c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='8.5' cy='7' r='4'%3E%3C/circle%3E%3Cline x1='20' y1='8' x2='20' y2='14'%3E%3C/line%3E%3Cline x1='23' y1='11' x2='17' y2='11'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Enterprise Package */
.enterprise-card {
    background-color: #f8fafc;
    border: 2px solid #00695c;
    border-radius: 4px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.enterprise-list {
    padding-left: 0;
    list-style: none;
    text-align: left;
}

.enterprise-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.enterprise-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300695c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.enterprise-approach {
    padding-left: 0;
    list-style: none;
    text-align: left;
}

.enterprise-approach li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}

.enterprise-approach li span {
    font-weight: 600;
    color: #00695c;
    margin-right: 8px;
    min-width: 100px;
}

/* Add-ons Section */
.addon-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.addon-icon {
    width: 64px;
    height: 64px;
    background-color: #e0f2f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #00695c;
}

.addon-icon svg {
    width: 32px;
    height: 32px;
}

/* FAQ Section */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 48px 16px 0;
    position: relative;
    cursor: pointer;
}

.faq-question:after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300695c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300695c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 0 16px;
    max-height: 500px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .enterprise-card {
        padding: 24px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 12px 36px 12px 0;
    }
}
