/* PSC Lander - Bedroom Mastery - Convertri Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Roboto, 'Segoe UI', Arial, sans-serif;
    background: rgb(217, 211, 211);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/* Main Card */
.card {
    background: #fff;
    width: 100%;
    max-width: 940px;
    border-radius: 30px;
    box-shadow: 2px 2px 13px 1px rgba(0, 0, 0, 0.3);
    padding: 30px 50px 40px;
}

/* Headline */
h1 {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}

h1 .red {
    color: #fc0000;
}

/* Video Section */
.video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 12px;
}

/* Video/Image Link */
.video-link {
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.video-link:hover {
    transform: scale(1.01);
}

.thumb-img {
    width: 100%;
    height: auto;
    display: block;
}

.video-prompt {
    text-align: center;
    font-size: 16px;
    color: #000;
    margin-bottom: 25px;
}

/* Content */
.content {
    max-width: 847px;
    margin: 0 auto;
    padding: 0 20px;
}

.content p {
    font-size: 24px;
    line-height: 1.6;
    color: #000;
    text-align: left;
    margin-bottom: 20px;
}

.content p strong {
    font-weight: 700;
}

.highlight-box {
    background: #efefef;
    padding: 20px 25px;
    border-radius: 4px;
    margin-top: 10px;
}

/* CTA Button */
.cta-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background: rgb(244, 232, 47);
    color: #000;
    font-family: Oswald, sans-serif;
    font-size: 30px;
    font-weight: 900;
    text-decoration: none;
    text-align: center;
    padding: 20px 45px;
    border-radius: 30px;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: rgb(226, 213, 3);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer .copyright {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.footer .disclaimer {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: underline;
    font-size: 12px;
}

.footer-links a:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        padding: 20px 20px 30px;
        border-radius: 20px;
    }

    h1 {
        font-size: 28px;
    }

    .content p {
        font-size: 18px;
    }

    .cta-button {
        font-size: 22px;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }

    .card {
        padding: 15px 15px 25px;
        border-radius: 15px;
    }

    h1 {
        font-size: 22px;
    }

    .content p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 18px;
        padding: 14px 20px;
        width: 100%;
    }
}

/* Legal page styles */
.legal-content {
    text-align: left;
}

.legal-content h2 {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0 10px;
}

.legal-content p {
    font-size: 15px;
    margin-bottom: 15px;
}