.entry-content a {
text-decoration: underline;
}
a {
     color: #3366CC;
}
a:hover {
     color: #FF0000;
     text-decoration: underline;
}
.entry-content a {
     color: #3366CC;
}
.entry-content a:hover {
     color: #FF0000;
     text-decoration: underline;
}


.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.pricing-tiers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tier {
    box-sizing: border-box;
    flex: 0 0 calc(25% - 20px); /* 25% width minus 20px for margins */
    padding: 15px;
    margin: 10px; /* 10px margin on all sides */
    border: 1px solid #e0e0e0;
    background-color: #f5f5f5; /* Light gray background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

.tier:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Increased shadow on hover */
}

.price {
    font-size: 24px; /* Increase font size */
    color: #007bff; /* Change color to blue */
    margin-bottom: 10px; /* Add some space below the price */
}

.tier small {
    font-size: 16px; /* Adjust as needed */
}

.btn {
    display: block;
    width: 100%;
    padding: 10px 15px; /* Increased padding for a larger button */
    margin-top: 10px; /* Add some space above the button */
    background-color: #007bff;
    color: #fff;
    border: 2px solid #0056b3; /* Added border */
    cursor: pointer;
    text-align: center;
    font-weight: bold; /* Bold text */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; /* Transition for smooth hover effects */
}

.btn:hover {
    background-color: #0056b3; /* Darker shade on hover */
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Increased shadow on hover */
}


@media (max-width: 768px) {
    .tier {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .tier {
        flex: 0 0 calc(50% - 20px); /* Adjusted to 50% width minus 20px for margins */
        margin: 10px 5px; /* Adjusted margins for mobile */
    }
}

.mobile-disclaimer {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-disclaimer {
        display: block;
        text-align: center; 
        margin-top: 10px;   
        font-weight: bold;  
    }
}