/* General Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

/* Header Section */
.header {
    text-align: center;
    padding: 20px;
    background-color: #000000;
    color: #ffffff;
    border-bottom: 1px solid #333333;
}

.header img {
    max-height: 60px;
    margin-bottom: 15px;
}

.header h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
}

/* Introduction Text */
.intro-text {
    text-align: center;
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Pricing Card Comparison Section */
.pricing-card-comparison {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Ensure top alignment */
    gap: 10px;
    margin: 0 auto 50px auto;
    max-width: 1500px;
    flex-wrap: nowrap;
}

.pricing-plan {
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    width: 280px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 700px; /* Set the height based on the longest card */
}

/* Card Header Styling */
.pricing-plan-header {
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 10px 10px 0 0;
}


.pricing-plan-content {
    padding: 30px;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

.plan-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff6600;
}

.price {
    font-size: 27px;
    color: #2ecc71;
    margin: 20px 0;
    font-weight: bold;
}

.currency {
    font-size: 16px;
    vertical-align: top;
    color: #cccccc;
    margin-right: 5px;
}

.amount {
    font-size: 36px;
    font-weight: thin;
}

.per-month {
    font-size: 14px;
    color: #999999;
    margin-top: 23px; /* Adds space between price and /month */
    vertical-align: bottom;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 28px;
    color: #2ecc71;
    margin: 20px 0;
    font-weight: bold;
}

.currency {
    font-size: 14px;
    vertical-align: top;
    margin-right: 5px;
    font-weight: normal;
}

.amount {
    font-size: 36px;
    font-weight: 200; /* Thin font for the amount */
}

/* Features List */
.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    color: #ffffff;
}

.features li {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #333333;
    cursor: pointer;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.features li:last-child {
    border-bottom: none;
}

.features li a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    width: 100%;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.features li:hover a,
.features li a:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* Tick and Cross Icons */
.tick::before {
    content: "✔";
    color: #2ecc71;
    margin-right: 8px;
    font-family: Arial, sans-serif;
}

.cross::before {
    content: "✘";
    color: #e74c3c;
    margin-right: 8px;
    font-family: Arial, sans-serif;
}

/* Sign Up Button */
.sign-up {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    color: #ffffff;
    background-color: #ff6600;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.sign-up:hover {
    background-color: #cc5200;
    transform: scale(1.05);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background-color: #1e1e1e;
    margin: auto;
    padding: 20px;
    border: 1px solid #ff6600;
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
    box-sizing: border-box;
}

.modal-content h3 {
    color: #ff6600;
    margin-bottom: 10px;
    font-size: 24px;
}

.modal-content h4 {
    color: #ffffff;
    margin-top: 20px;
    font-size: 20px;
}

.modal-content p {
    margin-top: 10px;
    font-size: 16px;
    color: #cccccc;
}

.modal-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
    color: #cccccc;
}

.modal-content li {
    margin-bottom: 5px;
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1500px) {
    .pricing-card-comparison {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        padding: 15px;
        max-width: 90%;
        max-height: 80vh;
    }

    .modal-content h3 {
        font-size: 20px;
    }

    .modal-content h4 {
        font-size: 18px;
    }

    .modal-content p {
        font-size: 14px;
    }

    .close {
        font-size: 24px;
    }
}