@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

*{
    text-decoration: none;
}
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #000;
    color: #fff;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height:127px;
    margin-right: 10px;
}

.watch-now-btn {
    background-color: #ff0050;
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
}

.left {
    flex: 1;
    padding-right: 20px;
}

.description {
    width: 100%;
    font-weight: 700;
}

.breadcrumb a, .breadcrumb span {
    color: #fff;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

h1 {
    margin-top: 0;
}

.date {
    color: #999;
}

.right {
    text-align: center;
    max-width: 60%;
    padding-right: 20px;
}

.right img {
    width: 100%;
    margin-bottom: 10px;
}

.study-title {
    font-weight: bold;
}

.verify-btn {
    position: relative;
    background-color: #ff0050;
    color: #fff;
    border: none;
    border-radius: 43px;
    padding: 13px 52px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    bottom:-21px;
}

.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.about-verification {
    background-color: white;
    color: black;
    padding: 20px;
}

.about-content-paragraph p {
    color: black;
}

.about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.ad-recall-img {
    border-radius: 30px;
    width: 70%;
}

.ad-recall {
    width: 100%;
    text-align: center;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.footer-section {
    flex: 1;
    text-align: center;
}

.footer-logo {
    max-width: 50px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #333;
}

.social-media a {
    margin: 0 10px;
}

.social-media i {
    max-width: 20px;
    color: white;
}

.footer-copyright {
    font-size: 12px;
}
.footer-section ul li{
    margin-right:40px;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
    }

    .left, .right {
        padding: 0;
    }

    .right {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }

    .about-content-wrapper {
        padding: 0 20px;
    }
    .verify-btn{
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }

    .logo img {
        height: 107px;
    }

    .watch-now-btn {
        margin-top: 10px;
    }

    .left h1 {
        font-size: 1.5em;
    }

    .verify-btn {
        padding: 10px 30px;
        font-size: 1em;
        bottom: 0;
    }
    .right{
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }
    
}

@media (max-width: 480px) {
    .header {
        padding: 10px;
    }

    .watch-now-btn {
        padding: 5px 10px;
    }

    .left h1 {
        font-size: 1.2em;
    }

    .verify-btn {
        padding: 8px 20px;
        font-size: 0.8em;
        bottom: 0;
    }

    .about-content-wrapper {
        padding: 0 10px;
    }

    .ad-recall-img {
        width: 100%;
    }
}
/* Responsive Footer Styles */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-media {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .footer-section h3 {
        font-size: 14px;
    }

    .footer-section ul li a {
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-media {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .footer-section {
        margin-bottom: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .social-media a {
        margin: 0 5px;
    }

    .social-media {
        margin-bottom: 10px;
    }
}

