.logo {
    position: fixed;
    top: 10px;
    left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #007BFF;
    transition: opacity 0.5s ease; /* Smooth transition for visibility */
}

.logo a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent */
}

.logo a:hover {
    text-decoration: none; /* Ensure no underline on hover */
    color: inherit; /* Ensure no color change on hover */
}

/* Centering the title using Flexbox */
.title-section {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 844px) {
    .title-section {
        font-size: 18px;
        margin-bottom: 5px;
        text-align: center;
    }
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 10px;
    padding: 20px;
}

.pricing-table {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px; /* Gap between pricing cards */
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px; /* Flex properties for responsiveness */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    max-width: 100%;
}

.pricing-card.featured {
    border: 2px solid #007BFF;
}

.pricing-header {
    background-color: #007BFF;
    color: #fff;
    padding: 20px;
}

.pricing-card.featured .pricing-header {
    background-color: #0056b3;
}

.pricing-header h2 {
    margin: 0 0 10px;
}

.pricing-header .price {
    font-size: 28px;
    margin: 0;
}

.pricing-header .price span {
    font-size: 16px;
    color: #e0e0e0;
}

.pricing-header .target-audience {
    font-size: 14px;
    margin-top: 10px;
}

.pricing-content {
    padding: 20px;
    flex: 1;
}

.pricing-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-content ul li:last-child {
    border-bottom: none;
}

.pricing-content ul li strong {
    display: block;
    font-weight: 600;
}

.pricing-footer {
    background-color: #f9f9f9;
    padding: 15px;
}

.pricing-footer p {
    margin: 0;
    font-size: 14px;
    color: #666;
}


.addons-pricing-header {
    background-color: #7239ee;
    color: #fff;
}
.optional-addons .pricing-card {
    flex: 1 1 50%;
    width: 50%;
    margin: 0 auto;
    max-width: 50%;
}

@media (max-width: 844px) {
    .optional-addons .pricing-card {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
}

.signature {
    text-align: center;
    margin-top: 20px;
}

.signature p {
    margin: 5px 0;
    font-size: 16px;
}

.signature a {
    color: #ffffff;
    text-decoration: none;
    background-color: #007BFF;
    padding: 10px 20px;
    margin: auto;
    line-height: 3.5;
    border-radius: 10px;
}

.signature a:hover {
    text-decoration: underline;
}

/* Large Devices (Desktops, 1200px and up) */
@media (min-width: 1200px) {
    .pricing-card {
        flex: 1 1 30%;
    }
}

/* Medium Devices (Tablets, 768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .pricing-card {
        flex: 1 1 45%;
        gap: 10px;
    }
}

/* Small Devices (Large Phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .pricing-card {
        flex: 1 1 100%;
        gap: 10px;
    }
}

/* Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575px) {
    .pricing-card {
        flex: 1 1 100%;
        gap: 10px;
    }

    .pricing-header {
        padding: 15px;
    }

    .pricing-header h2 {
        font-size: 20px;
    }

    .pricing-header .price {
        font-size: 24px;
    }

    .pricing-header .target-audience {
        font-size: 13px;
    }

    .pricing-content {
        padding: 15px;
    }

    .pricing-content ul li {
        font-size: 14px;
    }

    .pricing-footer {
        padding: 10px;
    }

    .pricing-footer p {
        font-size: 13px;
    }

    .signature p {
        font-size: 14px;
    }
}

