        :root {
            --primary-cyan: #5DBBBB;
            --dark-cyan: #3A9999;
            --light-cyan: #E8F6F6;
             --primary-blue: #0066CC;
            --dark-blue: #004B93;
            --light-gray: #F5F5F5;
        }

        body {
            font-family: 'Arial', sans-serif;
            color: #333;
        }

        /* Navbar */
        .navbar {
            background: white;
            padding: 1rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .navbar-brand img {
            height: 50px;
        }
/* Show dropdown on hover */
.hover-dropdown:hover .dropdown-menu {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

/* Fix Bootstrap clicking behavior */
.hover-dropdown .dropdown-toggle::after {
  transition: transform 0.2s;
}

.hover-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Styling to match the screenshot */
.navbar .dropdown-menu {
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin-top: 0; 
}

.navbar .dropdown-item {
  padding: 10px 20px;
  font-size: 16px;
}

.navbar .dropdown-item:hover {
  background: #f8f9fa;
}

        .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 1rem;
        }

        .nav-link:hover {
            color: var(--primary-cyan) !important;
        }

        .phone-btn {
            background: #0097b2;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
        }

        .phone-btn:hover {
            background: #333;
            color: white;
        }

        /* Hero Section */
        .hero-section {
            padding: 50px 0px;
           background-color: #0097b2;
    background-image: url("../images/hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
     position: relative;
            
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:#0097b2 ;
            opacity: 0.3;
           
        }
        .hero-content {
            position: relative;
        }

        .hero-section h1 {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero-section p {
            color: white;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .cta-btn {
            background: #0097b2;
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
        }

        .cta-btn:hover {
            background: #333;
            color: white;
        }

        /* Provider Logos */
        .provider-logos {
            background: white;
            padding: 2rem 0;
            text-align: center;
        }

        .provider-logos img {
           
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .provider-logos img:hover {
            opacity: 1;
        }

        /* Features Section */
        .features-section {
            background: var(--light-cyan);
            padding: 4rem 0;
        }

        .features-section h2 {
            color: #333;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .features-section ul {
            list-style: none;
            padding: 0;
        }

        .features-section ul li {
            padding: 0.5rem 0;
            color: #333;
            font-size: 1rem;
        }

        .features-section ul li::before {
            content: "✓ ";
            color: #28a745;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .feature-image {
            border-radius: 10px;
            width: 100%;
            height: auto;
        }

        /* Services Section */
        .services-section {
            padding: 4rem 0;
            background: white;
        }

        .services-section h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
        }

        .service-card {
            margin-bottom: 2rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--dark-cyan) 100%);
            padding: 4rem 0;
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: 4rem 0;
            background: white;
        }

        .why-choose-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .benefit-item {
            margin-bottom: 2rem;
        }

        .benefit-item h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .benefit-item h4::before {
            content: "☑ ";
            color: #28a745;
            margin-right: 0.5rem;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--light-cyan);
            padding: 4rem 0;
        }

        .faq-section h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .accordion-button {
            background: white;
            color: #333;
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: white;
            color: var(--primary-cyan);
        }

        /* Help Section */
        .help-section {
            background: white;
            padding: 4rem 0;
            text-align: center;
        }

        .help-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Disclaimer */
        .disclaimer-section {
            background: #f8f9fa;
            padding: 3rem 0;
        }

        .disclaimer-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .disclaimer-section p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: #222;
            color: white;
            padding: 3rem 0 1rem;
        }

        footer h5 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 0.5rem;
        }

        footer a {
            color: #ccc;
            text-decoration: none;
        }

        footer a:hover {
            color: var(--primary-cyan);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #999;
        }
    

     

        /* Hero Section */
       

        .hero-content-box {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            margin: 3rem 0;
        }

        .att-logo {
            margin-bottom: 1.5rem;
        }

        .att-logo img {
            height: 60px;
        }

        .hero-content-box h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #000;
        }

        .hero-content-box p {
            color: #333;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .hero-content-box ul {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .hero-content-box ul li {
            padding: 0.5rem 0;
            color: #333;
        }

        .hero-content-box ul li::before {
            content: "✓ ";
            color: #28a745;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .hero-image {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .cta-btn {
            background: #0097b2;
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            background: #333;
            color: white;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 4rem 0;
            background: white;
        }

        .pricing-section h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
        }

        .pricing-card {
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 2rem 1.5rem;
            margin-bottom: 2rem;
            background: white;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .pricing-header h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: #666;
        }

        .price {
            background: #000;
            color: white;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .price .amount {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .price .period {
            font-size: 1rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            color: #333;
        }

        .pricing-features li::before {
            content: "▸ ";
            color: var(--primary-blue);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .pricing-card .cta-btn {
            width: 100%;
            text-align: center;
        }

        /* Comparison Table */
        .comparison-section {
            padding: 4rem 0;
            background: var(--light-gray);
        }

        .comparison-section h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .comparison-section h3 {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: #666;
        }

        .comparison-intro {
            text-align: center;
            margin-bottom: 2rem;
            color: #333;
        }

        .comparison-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .comparison-table table {
            width: 100%;
            margin: 0;
        }

        .comparison-table th {
            background: #f8f9fa;
            padding: 1rem;
            font-weight: 600;
            text-align: center;
            border-bottom: 2px solid #ddd;
        }

        .comparison-table td {
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .check-icon {
            color: #28a745;
            font-size: 1.2rem;
        }

        .note-text {
            font-size: 0.9rem;
            color: #666;
            margin-top: 1rem;
            text-align: center;
        }

        /* Features Section */
        .features-section {
            padding: 4rem 0;
            background: white;
        }

        .features-section h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .features-section h3 {
            text-align: center;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: #666;
        }

        .features-intro {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .feature-box {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .feature-box h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 0.5rem 0;
            color: #333;
        }

        .feature-list li.green-check::before {
            content: "✓ ";
            color: #28a745;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .feature-list li.checkmark::before {
            content: "✓ ";
            color: #000;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .advantage-list {
            list-style: none;
            padding: 0;
        }

        .advantage-list li {
            padding: 0.5rem 0;
            color: #333;
        }

        .advantage-list li::before {
            content: "✓ ";
            color: #000;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .feature-image-box {
            text-align: center;
        }

        .feature-icon {
            font-size: 4rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
        }

        .feature-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        /* Disclaimer Section */
        .disclaimer-section {
            padding: 3rem 0;
            background: var(--light-gray);
        }

        .disclaimer-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .disclaimer-section p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .disclaimer-section strong {
            color: #000;
        }

           .call-btn:hover {
            background: #333;
            color: white;
        }

      

        .hero-content {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .frontier-logo-hero {
                width: 100%;
            margin-bottom: 20px;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .hero-content p {
            color: #666;
            margin-bottom: 15px;
        }

        .checkmark {
            color: #28a745;
            margin-right: 10px;
        }

        .hero-image {
            max-width: 100%;
            border-radius: 10px;
        }

        /* Pricing Cards */
        .pricing-section {
            padding: 60px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 40px;
        }

        .price-card {
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 0;
            margin-bottom: 30px;
            transition: transform 0.3s;
        }

        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .price-header {
            background: white;
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid #ddd;
        }

        .price-header h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .price-tag {
            background: var(--dark-bg);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .price-tag .amount {
            font-size: 2.5rem;
            font-weight: bold;
        }

        .price-tag .currency {
            font-size: 1.5rem;
            vertical-align: super;
        }

        .price-tag .period {
            font-size: 1rem;
        }

        .price-features {
            padding: 25px;
            background: white;
        }

        .price-features ul {
            list-style: none;
            padding: 0;
        }

        .price-features li {
            padding: 8px 0;
            color: #666;
        }

        .price-features li:before {
            content: "★";
            color: var(--primary-red);
            margin-right: 10px;
        }

        .price-cta {
            padding: 20px;
            background: white;
            text-align: center;
        }

        .price-cta button {
            background: var(--dark-bg);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: bold;
            width: 100%;
        }

        .price-cta button:hover {
            background: #333;
        }

        /* Features Section */
        .features-section {
            padding: 60px 0;
            background: var(--light-bg);
        }

        .feature-item {
            margin-bottom: 20px;
        }

        .feature-item h4 {
            font-weight: bold;
            margin-bottom: 10px;
        }

        .feature-item .number {
            color: var(--primary-red);
            font-weight: bold;
            margin-right: 5px;
        }

        /* Comparison Table */
        .comparison-section {
            padding: 60px 0;
            background: white;
        }

        .comparison-table {
            margin-top: 30px;
        }

        .comparison-table table {
            width: 100%;
        }

        .comparison-table th {
            background: var(--light-bg);
            padding: 15px;
            font-weight: bold;
            text-align: center;
        }

        .comparison-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #ddd;
        }

        .check-icon {
            color: #28a745;
        }

        .cross-icon {
            color: #dc3545;
        }

        /* Disclaimer Section */
        .disclaimer-section {
            padding: 60px 0;
            background: var(--light-bg);
        }

        .accordion-button {
            background: white;
            color: #333;
        }

        .accordion-button:not(.collapsed) {
            background: white;
            color: var(--primary-red);
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 40px 0 20px;
        }

        .footer h5 {
            font-weight: bold;
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer a {
            color: white;
            text-decoration: none;
        }

        .footer a:hover {
            color: var(--primary-red);
        }

        .provider-icon {
            margin-right: 10px;
        }

     


           .call-btn:hover {
            background: #333;
            color: white;
        }

       
        .hero-content {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .frontier-logo-hero {
                width: 100%;
            margin-bottom: 20px;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .hero-content p {
            color: #666;
            margin-bottom: 15px;
        }

        .checkmark {
            color: #28a745;
            margin-right: 10px;
        }

        .hero-image {
            max-width: 100%;
            border-radius: 10px;
        }

        /* Pricing Cards */
        .pricing-section {
            padding: 60px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 40px;
        }

        .price-card {
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 0;
            margin-bottom: 30px;
            transition: transform 0.3s;
        }

        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .price-header {
            background: white;
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid #ddd;
        }

        .price-header h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .price-tag {
            background: var(--dark-bg);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .price-tag .amount {
            font-size: 2.5rem;
            font-weight: bold;
        }

        .price-tag .currency {
            font-size: 1.5rem;
            vertical-align: super;
        }

        .price-tag .period {
            font-size: 1rem;
        }

        .price-features {
            padding: 25px;
            background: white;
        }

        .price-features ul {
            list-style: none;
            padding: 0;
        }

        .price-features li {
            padding: 8px 0;
            color: #666;
        }

        .price-features li:before {
            content: "★";
            color: var(--primary-red);
            margin-right: 10px;
        }

        .price-cta {
            padding: 20px;
            background: white;
            text-align: center;
        }

        .price-cta button {
            background: var(--dark-bg);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: bold;
            width: 100%;
        }

        .price-cta button:hover {
            background: #333;
        }

        /* Features Section */
        .features-section {
            padding: 60px 0;
            background: var(--light-bg);
        }

        .feature-item {
            margin-bottom: 20px;
        }

        .feature-item h4 {
            font-weight: bold;
            margin-bottom: 10px;
        }

        .feature-item .number {
            color: var(--primary-red);
            font-weight: bold;
            margin-right: 5px;
        }

        /* Comparison Table */
        .comparison-section {
            padding: 60px 0;
            background: white;
        }

        .comparison-table {
            margin-top: 30px;
        }

        .comparison-table table {
            width: 100%;
        }

        .comparison-table th {
            background: var(--light-bg);
            padding: 15px;
            font-weight: bold;
            text-align: center;
        }

        .comparison-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #ddd;
        }

        .check-icon {
            color: #28a745;
        }

        .cross-icon {
            color: #dc3545;
        }

        /* Disclaimer Section */
        .disclaimer-section {
            padding: 60px 0;
            background: var(--light-bg);
        }

        .accordion-button {
            background: white;
            color: #333;
        }

        .accordion-button:not(.collapsed) {
            background: white;
            color: var(--primary-red);
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 40px 0 20px;
        }

        .footer h5 {
            font-weight: bold;
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer a {
            color: white;
            text-decoration: none;
        }

        .footer a:hover {
            color: var(--primary-red);
        }

        .provider-icon {
            margin-right: 10px;
        }

        .cta-button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: bold;
        }

        .cta-button:hover {
            background: #c70043;
        }

         :root {
            --primary-red: #e5004d;
            --dark-bg: #000;
            --light-bg: #f8f9fa;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        .top-header {
            background: #fff;
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .logo {
            max-height: 50px;
        }

        .nav-links a {
            color: #333;
            text-decoration: none;
            margin: 0 20px;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--primary-red);
        }

        .call-btn {
            background: var(--dark-bg);
            color: white;
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }

         :root {
            --primary-blue: #0066CC;
            --dark-blue: #004B93;
            --light-gray: #F5F5F5;
        }

        body {
            font-family: 'Arial', sans-serif;
            color: #333;
        }

        /* Hero Section */
       

        .hero-content-box {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            margin: 3rem 0;
        }

        .att-logo {
            margin-bottom: 1.5rem;
        }

        .att-logo img {
            height: 90px;
        }

        .hero-content-box h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #000;
        }

        .hero-content-box p {
            color: #333;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .hero-content-box ul {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .hero-content-box ul li {
            padding: 0.5rem 0;
            color: #333;
        }

        .hero-content-box ul li::before {
            content: "✓ ";
            color: #28a745;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .hero-image {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .cta-btn {
            background: #000;
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            background: #333;
            color: white;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 4rem 0;
            background: white;
        }

        .pricing-section h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
        }

        .pricing-card {
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 2rem 1.5rem;
            margin-bottom: 2rem;
            background: white;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .pricing-header h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: #666;
        }

        .price {
            background: #000;
            color: white;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .price .amount {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .price .period {
            font-size: 1rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            color: #333;
        }

        .pricing-features li::before {
            content: "▸ ";
            color: var(--primary-blue);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .pricing-card .cta-btn {
            width: 100%;
            text-align: center;
        }

        /* Comparison Table */
        .comparison-section {
            padding: 4rem 0;
            background: var(--light-gray);
        }

        .comparison-section h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .comparison-section h3 {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: #666;
        }

        .comparison-intro {
            text-align: center;
            margin-bottom: 2rem;
            color: #333;
        }

        .comparison-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .comparison-table table {
            width: 100%;
            margin: 0;
        }

        .comparison-table th {
            background: #f8f9fa;
            padding: 1rem;
            font-weight: 600;
            text-align: center;
            border-bottom: 2px solid #ddd;
        }

        .comparison-table td {
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .check-icon {
            color: #28a745;
            font-size: 1.2rem;
        }

        .note-text {
            font-size: 0.9rem;
            color: #666;
            margin-top: 1rem;
            text-align: center;
        }

        /* Features Section */
        .features-section {
            padding: 4rem 0;
            background: white;
        }

        .features-section h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .features-section h3 {
            text-align: center;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: #666;
        }

        .features-intro {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .feature-box {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .feature-box h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 0.5rem 0;
            color: #333;
        }

        .feature-list li.green-check::before {
            content: "✓ ";
            color: #28a745;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .feature-list li.checkmark::before {
            content: "✓ ";
            color: #000;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .advantage-list {
            list-style: none;
            padding: 0;
        }

        .advantage-list li {
            padding: 0.5rem 0;
            color: #333;
        }

        .advantage-list li::before {
            content: "✓ ";
            color: #000;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .feature-image-box {
            text-align: center;
        }

        .feature-icon {
            font-size: 4rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
        }

        .feature-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        /* Disclaimer Section */
        .disclaimer-section {
            padding: 3rem 0;
            background: var(--light-gray);
        }

        .disclaimer-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .disclaimer-section p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .disclaimer-section strong {
            color: #000;
        }

           :root {
            --primary-magenta: #e5004d;
            --dark-bg: #000;
            --light-bg: #f8f9fa;
            --yellow-bg: #f5c842;
        }
        
    

       

        /* Hero Section */
    

        .hero-content-box {
            background: white;
            padding: 35px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .optimum-logo {
            max-width: 100%;
            margin-bottom: 25px;
        }

        .hero-content-box h1 {
            font-size: 2rem;
            font-weight: bold;
            color: #000;
            margin-bottom: 20px;
        }

        .hero-list {
            list-style: none;
            padding: 0;
        }

        .hero-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }

        .hero-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-magenta);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .hero-list strong {
            color: #000;
        }

        .hero-cta-btn {
            background: var(--dark-bg);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            margin-top: 15px;
        }

        .hero-cta-btn:hover {
            background: #333;
            color: white;
        }

        .hero-image-container {
            position: relative;
        }

        .hero-woman-img {
            max-width: 100%;
            height: auto;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 60px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 40px;
            color: #000;
        }

        .price-card {
            border: 2px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }

        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .price-header {
            background: white;
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid #ddd;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .price-header h3 {
            font-size: 1rem;
            margin: 0;
            font-weight: 600;
        }

        .price-tag {
            background: var(--dark-bg);
            color: white;
            padding: 25px;
            text-align: center;
        }

        .price-tag .currency {
            font-size: 1.5rem;
            vertical-align: super;
        }

        .price-tag .amount {
            font-size: 3rem;
            font-weight: bold;
        }

        .price-tag .asterisk {
            font-size: 2rem;
            vertical-align: super;
        }

        .price-tag .period {
            font-size: 1.2rem;
            margin-left: 5px;
        }

        .price-features {
            padding: 25px;
            background: white;
        }

        .price-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .price-features li {
            padding: 8px 0;
            color: #666;
            position: relative;
            padding-left: 25px;
        }

        .price-features li:before {
            content: "»";
            position: absolute;
            left: 0;
            color: #000;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .price-cta {
            padding: 20px;
            background: white;
            text-align: center;
        }

        .price-cta button {
            background: var(--dark-bg);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: bold;
            width: 100%;
            cursor: pointer;
        }

        .price-cta button:hover {
            background: #333;
        }

        /* TV Package Section */
        .tv-section {
            padding: 60px 0;
            background: var(--light-bg);
        }

        /* Bundle Deals Section */
        .bundle-section {
            padding: 60px 0;
            background: white;
        }

        .bundle-section h2 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .bundle-section h4 {
            font-size: 1.3rem;
            font-weight: bold;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        .bundle-section p {
            margin-bottom: 15px;
            color: #666;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
        }

        .benefits-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }

        .benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .bundle-cta-btn {
            background: var(--dark-bg);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            margin-top: 20px;
        }

        .bundle-cta-btn:hover {
            background: #333;
            color: white;
        }

        /* Disclaimer Section */
        .disclaimer-section {
            padding: 60px 0;
            background: var(--light-bg);
        }

        .disclaimer-text {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

     
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                flex-direction: column;
                gap: 10px;
            }

            .hero-content-box h1 {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .price-tag .amount {
                font-size: 2.5rem;
            }
        }

        .call-btn {
            background: #000;
            color: white;
            padding: 10px 25px;
            text-decoration: none;
            border-radius: 3px;
            font-size: 14px;
            white-space: nowrap;
        }

        .call-btn:hover {
            background: #333;
            color: white;
        }

        /* Hero Section */
      

        .hero-content {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .xfinity-badge {
            display: inline-block;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .subheading {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .hero-content h1 {
            font-size: 28px;
            font-weight: 700;
            color: #000;
            margin-bottom: 20px;
        }

        .hero-content p {
            color: #000;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .hero-content h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .feature-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            font-size: 14px;
        }

        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0066cc;
            font-weight: bold;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin: 60px 0 20px;
            color: #333;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Pricing Cards */
        .pricing-card {
            border: 2px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: transform 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .price-header {
            background: #000;
            color: white;
            padding: 25px;
            text-align: center;
        }

        .speed {
            font-size: 22px;
    font-weight: 900;
        }

        .price {
            font-size: 48px;
            font-weight: 700;
        }

        .price sup {
            font-size: 24px;
        }

        .period {
            font-size: 16px;
            font-weight: 400;
        }

        .price-body {
            padding: 30px 25px;
            background: white;
        }

        .price-body ul {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
            min-height: 120px;
        }

        .price-body ul li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            font-size: 14px;
            color: #555;
        }

        .price-body ul li:before {
            content: "●";
            position: absolute;
            left: 0;
            color: #000;
        }

        .call-now-btn {
            display: block;
            width: 100%;
            background: #000;
            color: white;
            padding: 12px;
            text-align: center;
            text-decoration: none;
            border-radius: 3px;
            font-size: 14px;
            font-weight: 600;
        }

        .call-now-btn:hover {
            background: #333;
            color: white;
        }

        /* Bundle Section */
        .bundle-section {
            background: #f5f5f5;
            padding: 60px 0;
        }

        .bundle-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .bundle-content h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .bundle-features {
            text-align: left;
            margin: 30px 0;
        }

        .bundle-features h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .bundle-features ul {
            list-style: none;
            padding: 0;
        }

        .bundle-features ul li {
            padding: 5px 0;
            padding-left: 20px;
            position: relative;
            font-size: 14px;
        }

        .bundle-features ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0066cc;
            font-weight: bold;
        }

        /* WiFi Deal Section */
        .wifi-deal-section {
            padding: 0px 0px 60px 0px;
            background: white;
        }

        .deal-card {
            border: 2px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            height: 100%;
        }

        /* Footer */
        .footer-section {
            background: white;
            padding: 40px 0;
            border-top: 3px solid #0066cc;
        }

        .footer-title {
            color: #66c2ff;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            padding: 5px 0;
        }

        .footer-links a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: #0066cc;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .price {
                font-size: 36px;
            }
        }

        .phone-btn {
            background: #000;
            color: #fff;
            padding: 8px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
        }

     

      

        .verizon-logo-hero {
            width: 100%;
            margin-bottom: 20px;
        }

        .hero-text-box h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-text-box p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .price-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .check-icon {
            color: #00ff00;
            margin-right: 10px;
        }

        .hero-cta-btn {
            background: #000;
            color: #fff;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            margin-top: 20px;
            display: inline-block;
        }

        /* Section Titles */
        .section-title {
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            margin: 60px 0 40px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 14px;
            color: #666;
            margin-bottom: 40px;
        }

        /* Pricing Cards */
        .pricing-card {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            margin-bottom: 30px;
            height: 100%;
        }

        .pricing-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            min-height: 50px;
        }

        .price-tag {
            background: #000;
            color: #fff;
            padding: 15px;
            margin: 20px -20px;
            font-size: 32px;
            font-weight: 700;
        }

        .price-tag sup {
            font-size: 18px;
        }

        .price-tag .month {
            font-size: 14px;
            font-weight: 400;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            text-align: left;
            margin: 20px 0;
        }

        .feature-list li {
            font-size: 13px;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #00ff00;
        }

        .call-btn {
            background: #000;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            font-size: 13px;
            cursor: pointer;
            width: 100%;
            margin-top: 20px;
        }

        /* TV Packages */
        .tv-card {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
        }

        .tv-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Premium Add-ons */
        .addon-card {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            max-width: 400px;
            margin: 0 auto;
        }

        /* 5G Home Internet Section */
        .home-internet-section {
            background: #f8f8f8;
            padding: 60px 0;
            margin-top: 60px;
        }

        .internet-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .internet-text {
            flex: 1;
        }

        .internet-text h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .internet-text p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .internet-image {
            flex: 1;
        }

        .internet-image img {
            width: 100%;
            border-radius: 8px;
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: 60px 0;
        }

        .why-card {
            margin-bottom: 30px;
        }

        .why-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .why-card p {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
        }
        
        .ft-hero , .x-hero {
    padding: 50px 0px;
    background-color: #0097b2;
    background-image: url(../images/girl-social-media_53876-90181.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.opt-hero {
   background-image: url(../images/pretty-cheerful-african-lady-holding-laptop-isolated_171337-6668.jpg); 
}
.v-content{
     background-image: url(../images/man-using-digital-tablet-psd-mockup-smart-technology_53876-110815.jpg); 
    
}




@media (max-width:767px){
    
    
    .hero-section{
        padding: 15px 0px !important; 
    }
    .hero-content {
    background: white;
    padding: 10px;
    }
    
    .hero-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 14px;
}
}

.earthlink-btn{
 background: #f68c20 !important;   
}

.fiber-box {
            border: 1.5px solid #000;
            padding: 0;
        }

        .fiber-left {
            padding: 30px;
            border-right: 1.5px solid #000;
        }

        .fiber-left h6 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .fiber-left h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .fiber-left p {
            font-size: 16px;
            margin-bottom: 0;
            color: #333;
        }

        .fiber-right {
            padding: 30px;
            text-align: center;
        }

        .best-value {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .plan-speed {
            font-size: 14px;
            margin: 8px 0;
        }

        .fiber-box  .price {
            font-size: 36px;
            font-weight: 800;
            margin: 10px 0;
            background: #f68c20;
        }

        .equipment {
            font-size: 13px;
            color: #333;
        }

        @media (max-width: 768px) {
            .fiber-left {
                border-right: none;
                border-bottom: 1.5px solid #000;
            }
        }


.frontier-logo-hero{
    
    width: 100% !important;
}
.frontier-btn{
    
    background-color: #ff0037 !important;
}

.op-btn {
    background-color: #f66608 !important;
    
}

.combo-section {
    background: #f8f9fa;
}

.combo-card {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.combo-title {
    font-size: 30px;
    font-weight: 700;
}

.combo-title span {
    color: #0d6efd;
}

.service-box {
    border: 1px solid #ddd;
    padding: 25px;
    height: 100%;
    border-radius: 6px;
}

.service-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.combo-description {
    font-size: 16px;
    margin-bottom: 20px;
}

.combo-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.combo-benefits li {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500;
}


.combo-icons .icon-box {
    padding: 20px;
}

.combo-icons i {
    font-size: 36px;
    color: #f66608;
    margin-bottom: 12px;
}

.combo-icons h6 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}


