.futuristic-body {
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.futuristic-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(31, 72, 126, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 174, 152, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.main-content {
    position: relative;
    z-index: 1;
}

.hero-section {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(31, 72, 126, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 2rem;
    position: relative;
}

.title-gradient {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, #1f487e, #006effff, #1f487e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    display: block;
}

.title-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #2c5aa0;
    display: block;
    margin-top: 0.5rem;
    opacity: 0.9;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #1f487e;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.benefits-overview {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f487e;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(31, 72, 126, 0.2);
}

.section-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    color: #1f487e;
    font-weight: 300;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background-color: #1F487E; background: linear-gradient(135deg, #1F487E 0%, #2c5aa0 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: rgba(30, 174, 152, 0.5);
    box-shadow: 0 15px 40px rgba(30, 174, 152, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1EAE98, #1f487e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(30, 174, 152, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: #1f487e;
}

.benefit-content h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffffff;
    margin-bottom: 1rem;
}

.benefit-content p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffffff;
    font-weight: 300;
    margin: 0;
}

.comparison-section {
    padding: 4rem 0;
}

.comparison-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    background-color: #1F487E; background: linear-gradient(135deg, #1F487E 0%, #2c5aa0 100%);
    border: 1px solid rgba(30, 174, 152, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(45deg, #1EAE98, #1f487e);
}

.comparison-table th {
    color: #ffffffff;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 1.5rem 1rem;
    border: none;
}

.comparison-table td,
.comparison-table tbody th {
    color: #ffffffff;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    padding: 1.2rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    vertical-align: middle;
}

.comparison-table tbody th {
    background: rgba(31, 72, 126, 0.3);
    font-weight: 600;
    text-align: left;
}

.text-success {
    color: #1EAE98 !important;
    font-size: 1.5rem;
}

.text-danger {
    color: #ff6b6b !important;
    font-size: 1.5rem;
}

.cost-high {
    color: #ff6b6b;
    font-weight: 600;
}

.cost-low {
    color: #1EAE98;
    font-weight: 600;
}

@media (max-width: 768px) {
    .title-gradient {
        font-size: 2.2rem;
    }
    
    .title-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

hr {
    width: 40%;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 80px;
    border: 2px solid #1F487E;
}

header {
    max-width: 600px;
    margin: 10vh auto;
}

h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.card-text {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
}

.img-icon {
    height: 150px;
    width: 180px;
}

h5 {
    font-weight: 800;
}

.card {
    height: 240px;
    width: 240px;
    max-width: 300px;
    min-height: 100px;
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
    color: #1F487E;
    margin: 20px;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
}

.wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 50px;
    margin-top: 4vw;
    background-color: #1F487E;
    border-radius: 43px;
}

.table-center {
    margin: auto;
    width: 60%;
    margin-bottom: 50px;
}

@media screen and (min-width:980px) and (max-width:1420px) {
    .wrapper {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media screen and (min-width:760px) and (max-width:980px) {
    .wrapper {
        margin-left: 5%;
        margin-right: 5%;
    }
    .card {
        height: 180px;
        width: 180px;
    }
    h5 {
        font-size: 13.5px;
    }
    .img-icon {
        height: 110px;
        width: 130px;
    }
}

@media screen and (max-width:760px) {
    .table-center {
        margin: auto;
        width: 100%;
        margin-bottom: 50px;
        overflow-x: auto;
    }
    .card {
        height: 160px;
        width: 180px;
    }
    .img-icon {
        height: 110px;
        width: 130px;
    }
    h5 {
        font-size: 13px;
    }
    tr {
        font-size: 12px;
    }
}

h1+p {
    margin-top: 1rem;
}

main {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.footer {
    position: fixed;
    bottom: 10px;
    margin: auto;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
}

th,
td {
    text-align: center;
    padding: 16px;
}

th:first-child,
td:first-child {
    text-align: left;
}

tr:nth-child(even) {
    background-color: #f2f2f2
}

.fa-check-circle {
    color: green;
}

.fa-times-circle {
    color: red;
}