* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1e293b;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.plan-details-container {
    background: #2d3748;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 1200px;
}
@media(max-width: 800px){
    .plan-details-container {
        padding: 20px;
    }
    .plan-details-container{
        width: 100%;
    }
}

header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

header i {
    font-size: 2em;
    color: #3da077;
}

header h1 {
    font-size: 2em;
    color: #fff;
}

section {
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #3da077;
}

.price, .cost-calculator, .deployment-schedule, .faq {
    background: #3b4252;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.price h3, .cost-calculator h3, .deployment-schedule h3, .faq h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.price p, .cost-calculator p, .deployment-schedule p, .faq p {
    font-size: 1.5em;
    color: #fff;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.features i {
    color: #3da077;
}

.extra-option {
    margin-bottom: 20px;
}

.extra-option label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.extra-option select, .extra-option input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #3b4252;
    color: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
}

table th {
    background: #3da077;
    color: #fff;
}

table td {
    background: #3b4252;
}

.next-steps {
    display: flex;
    gap: 20px;
}

.confirm-btn, .contact-btn {
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.confirm-btn {
    background-color: #3da077;
    color: #fff;
}

.confirm-btn:hover {
    background-color: #0f291e;
    transform: scale(1.05);
}

.contact-btn {
    background-color: #3b4252;
    color: #fff;
}

.contact-btn:hover {
    background-color: #2d3748;
    transform: scale(1.05);
}

.testimonials {
    background: #3b4252;
    padding: 20px;
    border-radius: 10px;
}

.testimonials h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.testimonials p {
    font-size: 1em;
    color: #fff;
}
.next-steps button {
    padding: 15px 20px;
    background-color: #3da077;
    color: #fff;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.next-steps button:hover {
    background-color: #0f291e;
    transform: scale(1.05);
}