.optimum-p1 {
    font-size: 14px;
    color: black;
}

.optimum-div {
    border: 1px solid gray;
    border-radius: 10px;
}

.optimum-div-a1 {
    background-color: orangered;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.optimum-div-a1:hover {
    background-color: #ff3300;
    transform: translateY(-2px);
}

.optimum-h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.optimum-p2 {
    font-size: 20px;
    color: #333;
    line-height: 1.5;
}

.row-1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: -170px;
    flex-wrap: wrap;
    gap: 20px;
}

.card-1 {
    width: calc(33.33% - 20px);
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card-1:hover {
    transform: translateY(-5px);
}

.row-3 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 40px 0;
}

.card-5 {
    width: 27%;
}

.card-6 {
    width: 42%;
    background-image: url(../images/optimum/Next-gen_Desktop_2x.png);
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 40px;
}

.card-7 {
    width: 27%;
}

.faq-answer {
    display: none;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    background: #fff;
    margin-top: -1px;
}

.faq-question {
    cursor: pointer;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.img {
    width: 80px;
    height: auto;
    margin: 0 auto;
}

.brand {
    width: 360px;
    transition: transform 0.3s ease;
}

.brand:hover {
    transform: scale(1.05);
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

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

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 20px;
    right: -35px;
    background: #FF6200;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 500;
}

.pricing-speed {
    font-size: 20px;
    font-weight: 700;
    color: #FF6200;
    margin-bottom: 15px;
}

.pricing-amount {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.pricing-amount .currency {
    font-size: 20px;
    margin-top: 4px;
    margin-right: 3px;
}

.pricing-amount .period {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    margin-left: 3px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.pricing-features li i {
    color: #FF6200;
    margin-right: 10px;
}

.pricing-button {
    display: inline-block;
    padding: 12px 30px;
    background: #FF6200;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.pricing-button:hover {
    background: #FF6200;
    transform: translateY(-2px);
}

.pricing-disclaimer {
    font-size: 11px;
    color: #666;
    margin-top: 12px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .optimum-h1 {
        font-size: 36px;
    }
    
    .optimum-p2 {
        font-size: 18px;
    }
    
    .row-1 {
        margin-top: -100px;
    }
    
    .card-1 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .row-3 {
        flex-direction: column;
    }
    
    .card-5, .card-6, .card-7 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .brand {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }
}