@media all and (min-width: 992px) {

  .theme-header .zpcontainer {

    padding:10px 15px !important;

  }

  .theme-header-topbar {

    padding:8px 0px !important;

}
 /* Paste this into Zoho Sites Custom CSS */
.package-card {
    background: white;
    border-radius: 12px;
    padding: 10px;
    margin: 5px 5px;
    width: 400px;
    height: 600px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}
    
 .package-header {
    text-align: center;
}
    
.package-blurb {
    font-style: italic;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.package.popular {
    border: 3px solid #819071;
    position: relative;
}

.package-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #819071;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.package-price {
    margin: 20px 0;
}

.price {
    font-size: 3em;
    font-weight: bold;
    color: #333;
}

.per {
    font-size: 1.2em;
    color: #666;
}

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

.package-features li {
    padding: 8px 0;
    border-bottom: 0px solid #eee;
}

.package-button {
    background: #400406;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    display: flex; /* Enables CSS flexbox */
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
}

.package-button:hover {
    background: #819071;
}

.cta-button {
    background: white;
    color: #400406;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .package-card {
        margin: 10px 0;
    }
    
    .price {
        font-size: 2.5em;
    }
}

/* Fix package cards layout */
.package-section,
.pricing-section {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
    align-items: stretch !important;
}

.package-card {
    flex: 1 1 300px !important;
    max-width: 350px !important;
    min-width: 280px !important;
}

@media (max-width: 768px) {
    .package-section,
    .pricing-section {
        flex-direction: column !important;
    }
    
    .package-card {
        flex: 1 1 auto !important;
        max-width: 100% !important;
    }
}
    
