
/* ========================================= */
/* CPC Card Page Styles (cpc-card.html) */
/* ========================================= */

/* CPC Card Hero Section */
.cpc-hero {
    position: relative;
    width: 100%;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;


    
}

.cpc-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.cpc-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(217, 7, 7, 0.6);
}

.cpc-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700; /* Gold color */
    text-shadow: 0 0 10px rgba(195, 6, 6, 0.8);
}

.cpc-hero-content p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

/* CPC Card Benefits Section */
.cpc-benefits {
    padding: 60px 0;
    background-color: #000000; /* Light gray */
}

.cpc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cpc-benefit-card {
    background-color: #1000001f;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(224, 6, 6, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.cpc-benefit-card i {
    font-size: 2.5em;
    color: #ff0000; /* Blue color */
    margin-bottom: 15px;
}

.cpc-benefit-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #ffffff;
    /* Responsive design */
    @media (max-width: 768px) {
       .cpc-benefits {
            padding: 20px;
        }
    }
    @media (max-width: 480px) {
       .cpc-benefits-grid {
            grid-template-columns: 1fr;
        }
    }
}



.cpc-benefit-card p {
    font-size: 1em;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: center;
    /* Responsive design */
    @media (max-width: 768px) {
       .cpc-benefits {
            padding: 20px;
        }
    }
    @media (max-width: 480px) {
       .cpc-benefits-grid {
            grid-template-columns: 1fr;
        }
    }
}

.cpc-call-to-action {
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(227, 5, 5, 0.968);
    padding: 25px;
    justify-content: center;
    transition: transform 0.3s ease;
    margin: 20px;
    margin-bottom: 0;
}

.standard-protocol {
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(212, 3, 3, 0.839);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    margin: 20px;
    margin-top: 0;
}

.non-disclosure {
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(240, 4, 4, 0.86);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    margin: 20px;
    margin-top: 0;
}

/* CPC Card Types Section */
.cpc-card-types {
    padding: 60px 0;
    background-color: #000000;
}

.cpc-card-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cpc-card-type {
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.cpc-card-type h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ffffff;
}

.cpc-card-type p {
    font-size: 1em;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;

    /* Responsive design */
    @media (max-width: 768px) {
       .cpc-card-types {
            padding: 20px;
        }
    }
    @media (max-width: 480px) {
       .cpc-card-types-grid {
            grid-template-columns: 1fr;
        }
    }
}

.cpc-card-price {
    font-size: 1em;
    font-weight: 600;
    color: #ee0e0e;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cpc-hero-content h1 {
        font-size: 2rem;
    }

    .cpc-hero-content p {
        font-size: 1rem;
    }
}

/* Add the new button styles  */
.btn-small {
    font-size: 0.8em;
    padding: 8px 15px;
    font-weight: normal;
    display: inline-block;
}
