#privacyCheckerBanner{
    background-position: top center;
    background-repeat: repeat-x;
    padding-top: 55px;
    padding-bottom: 20px;
}
.privacyChecker {
    padding: 60px 0;
    min-height: 500px;
}

.privacyCheckerTitle {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 30px;
}

.privacyCheckerTitle h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.privacyCheckerSubtitle {
    font-size: 1.3em;
    color: #5a6c7d;
    margin-top: 10px;
}

.privacyCheckerFormContainer {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.privacyCheckerFormContainer:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.privacyCheckerForm .form-group {
    margin-bottom: 25px;
}

.privacyCheckerForm label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 16px;
}

.privacyCheckerInput {
    width: 100%;
    height: 50px;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.privacyCheckerInput:focus {
    outline: none;
    border-color: #68ae00;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(104, 174, 0, 0.1);
}

.privacyCheckerInput.errorInput {
    border-color: #f88b1d;
    background: #fff5f5;
}

.privacyCheckerInput.errorInput:focus {
    box-shadow: 0 0 0 3px rgba(248, 139, 29, 0.1);
}

.privacyCheckerCtaBar{
    margin: 18px 0 22px;
    padding: 14px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(104,174,0,0.12) 0%, rgba(121,202,0,0.08) 100%);
    border: 1px solid rgba(104,174,0,0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.privacyCheckerCtaText{
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
}

.privacyCheckerCtaLink{
    flex-shrink: 0;
    padding: 10px 14px;
    border-radius: 10px;
    background: #68ae00;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    transition: all .2s ease;
}

.privacyCheckerCtaLink:hover{
    background: #79ca00;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(104,174,0,0.25);
}

@media (max-width: 768px){
    .privacyCheckerCtaBar{
        flex-direction: column;
        align-items: flex-start;
    }
    .privacyCheckerCtaLink{
        width: 100%;
        text-align: center;
    }
}

.privacyCheckerForm .form-text {
    margin-top: 8px;
    font-size: 14px;
    color: #6c757d;
}

.privacyCheckerSubmit {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #68ae00 0%, #79ca00 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(104, 174, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.privacyCheckerSubmit:hover {
    background: linear-gradient(135deg, #79ca00 0%, #8dd400 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(104, 174, 0, 0.4);
}

.privacyCheckerSubmit:active {
    transform: translateY(0);
}

.privacyCheckerSubmit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.privacyCheckerLoading {
    text-align: center;
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacyCheckerLoading img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.privacyCheckerLoading h3 {
    color: #2c3e50;
    margin: 20px 0 10px;
    font-size: 24px;
}

.privacyCheckerLoading p {
    color: #6c757d;
    font-size: 16px;
}

/* Error Message Box */
.privacyCheckerError {
    margin-bottom: 30px;
    animation: slideDown 0.3s ease;
}

.error-message-box {
    background: #fff5f5;
    border: 2px solid #f88b1d;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(248, 139, 29, 0.2);
}

.error-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.error-content {
    flex: 1;
}

.error-content h4 {
    margin: 0 0 5px 0;
    color: #f88b1d;
    font-size: 18px;
    font-weight: 600;
}

.error-content p {
    margin: 0;
    color: #d97706;
}

.error-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #f88b1d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.error-close:hover {
    background: rgba(248, 139, 29, 0.1);
}

/* Success Message Box */
.privacyCheckerSuccess {
    margin-bottom: 30px;
    animation: slideDown 0.3s ease;
}

.success-message-box {
    background: #f1f8e9;
    border: 2px solid #68ae00;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(104, 174, 0, 0.2);
}

.success-icon {
    font-size: 32px;
    color: #68ae00;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.success-content {
    flex: 1;
}

.success-content h4 {
    margin: 0 0 5px 0;
    color: #68ae00;
    font-size: 18px;
    font-weight: 600;
}

.success-content p {
    margin: 0;
    color: #5a9a00;
}

.success-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #68ae00;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.success-close:hover {
    background: rgba(104, 174, 0, 0.1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacyCheckerResults {
    padding: 40px;
    border-radius: 12px;
    border: none;
    margin-bottom: 30px;
}

.privacyCheckerResults p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Report Header */
.privacyCheckerReportHeader {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.privacyCheckerReportHeader .packSlideTitle {
    margin-bottom: 15px;
}

.privacyCheckerReportHeader .packSlideSubTitle {
    margin-bottom: 15px;
    font-size: 22px;
}

.privacyCheckerBanner .packSlideText {
    max-width: 100%;
}
.privacyCheckerReportHeader .packSlideText {
    color: #6c757d;
    line-height: 1.6;
}

.result-summary {
    margin-bottom: 35px;
    padding-bottom: 25px;
}

.result-summary h3 {
    color: #68ae00;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
}

.result-summary.has-issues h3 {
    color: #f88b1d;
}

.result-summary p {
    margin: 10px 0;
    color: #5a6c7d;
    line-height: 1.8;
}

.result-summary p strong {
    color: #2c3e50;
    font-weight: 600;
}

.result-summary a {
    color: #68ae00;
    text-decoration: none;
    transition: color 0.2s ease;
}

.result-summary a:hover {
    color: #79ca00;
    text-decoration: underline;
}


/* Summary Cards Layout */
.summary-cards {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 12px;
}

.summary-cards-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.summary-cards-row:last-child {
    margin-bottom: 0;
}

.summary-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.summary-card.not-found {
    border: 2px solid #dc2626;
}

.card-icon {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 40px;
    height: 40px;
}

.card-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1;
}

.card-number.red {
    color: #dc2626;
}

.card-number.green {
    color: #68ae00;
}

.privacy-issues-card.no-issues {
    border: 2px solid #68ae00;
    background: #f1f8e9;
}

.card-text-top {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
}

.card-text-bottom {
    color: #5a6c7d;
    line-height: 1.4;
}

.card-text-bottom a {
    color: #68ae00;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-text-bottom a:hover {
    color: #79ca00;
    text-decoration: underline;
}

/* Top row - 2 cards */
.summary-cards-row:first-child .summary-card {
    min-height: 180px;
}

/* Bottom row - 3 cards */
.summary-cards-row:last-child .summary-card {
    min-height: 140px;
}

/* Privacy policy card - special styling */
.privacy-policy-card.found .card-icon svg {
    color: #68ae00;
}

.privacy-policy-card.not-found .card-icon svg {
    color: #dc2626;
}

/* Cookie banner card - special styling */
.cookie-banner-card.found .card-icon svg {
    color: #68ae00;
}

.cookie-banner-card.not-found {
    border: 2px solid #dc2626;
}

.cookie-banner-card.not-found .card-icon svg {
    color: #dc2626;
}

.pages-results {
    margin-top: 30px;
}

.pages-results h4 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.result-item {
    padding: 25px;
    margin-bottom: 20px;
    border-right: 5px solid #68ae00;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.result-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateX(-5px);
}

.result-item.has-issues {
    border-right-color: #f88b1d;
    background: #fff5f5;
}

.result-item.no-issues {
    border-right-color: #68ae00;
    background: #f1f8e9;
}

.result-item h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    word-break: break-all;
}

.result-item p {
    margin: 8px 0;
    color: #5a6c7d;
    line-height: 1.6;
}

.result-item p strong {
    color: #2c3e50;
    font-weight: 600;
}

.result-item .issues-list {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.result-item .issues-list strong {
    color: #f88b1d;
    display: block;
    margin-bottom: 10px;
}

.result-item .issues-list ul {
    margin: 0;
    padding-right: 25px;
    list-style: none;
}

.result-item .issues-list li {
    margin-bottom: 8px;
    padding-right: 20px;
    position: relative;
    color: #d97706;
    line-height: 1.6;
}

.result-item .issues-list li:before {
    content: "•";
    position: absolute;
    right: 0;
    color: #f88b1d;
    font-weight: bold;
}

.privacyCheckerContactForm {
    margin-top: 40px;
    padding: 40px;
}

#privacyCheckerLeadForm .formItem {
    position: relative;
    margin-bottom: 43px;
}

#privacyCheckerLeadForm .formItem.textarea {
    margin-bottom: 30px;
}

#privacyCheckerLeadForm input[type="text"] {
    height: 33px;
    width: 100%;
    border-radius: 3px;
    background: #ebebeb;
    border: 1px solid #f3f3f3;
    padding: 0 11px;
    position: relative;
    z-index: 1;
}

#privacyCheckerLeadForm input[type="text"] + label + label {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 12px;
    z-index: 0;
    transition: all 0.3s;
    cursor: text;
    font-weight: bold;
}

#privacyCheckerLeadForm input[type="text"]:not([value]) + label + label,
#privacyCheckerLeadForm input[type="text"][value=""] + label + label {
    z-index: 1;
}

#privacyCheckerLeadForm input[type="text"]:focus + label + label {
    top: -15px;
}

#privacyCheckerLeadForm input[type="text"].errorInput,
#privacyCheckerLeadForm label[for="terms"].errorInput,
#privacyCheckerLeadForm span[for="terms"].errorInput,
#privacyCheckerLeadForm textarea.errorInput {
    border: 1px solid #f88b1d;
    color: #f88b1d;
}

#privacyCheckerLeadForm input[type="text"].errorInput + label {
    background-color: #f88b1d;
}

#privacyCheckerLeadForm input[type="text"]:focus {
    border: 1px solid #99c557;
    color: #333;
    background: #fff;
}

#privacyCheckerLeadForm input[type="text"] + label,
#privacyCheckerLeadForm input[type="text"]:focus + label {
    background-color: #99c557;
    border-radius: 50%;
    display: block;
    height: 6px;
    margin-top: -3px;
    position: absolute;
    right: -2px;
    top: 50%;
    width: 6px;
    z-index: 3;
}

#privacyCheckerLeadForm textarea {
    background-color: #ebebeb;
    border: 1px solid #f3f3f3;
    width: 100%;
    height: 186px;
    border-radius: 3px;
    resize: none;
    padding: 13px 11px;
    position: relative;
    z-index: 1;
}

#privacyCheckerLeadForm textarea + label {
    position: absolute;
    top: 13px;
    right: 12px;
    transition: all 0.3s;
    cursor: text;
    z-index: 0;
}

#privacyCheckerLeadForm textarea:not([value]) + label,
#privacyCheckerLeadForm textarea[value=""] + label {
    z-index: 1;
}

#privacyCheckerLeadForm textarea:focus {
    border: 1px solid #99c557;
    color: #333;
    background-color: #fff;
}

#privacyCheckerLeadForm textarea:focus + label {
    top: -26px;
}

#privacyCheckerLeadForm .contactSubmit {
    text-align: left;
}

#privacyCheckerLeadForm .contactSubmit button:hover:not(:disabled) {
    background-color: #ff9607;
}

#privacyCheckerLeadForm .contactSubmit button {
    text-align: center;
    font-size: 30px;
    color: #fff;
    font-family: FbSpoilerBold;
    box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 38%);
    width: 100%;
    height: 51px;
    border: 0;
    background-color: #f98006;
    transition: all 0.3s;
}

#privacyCheckerLeadForm .contactSubmit button.disabled,
#privacyCheckerLeadForm .contactSubmit button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#privacyCheckerLeadForm .contactSubmit button.disabled:hover {
    box-shadow: 0px 0px 3px 1px rgb(161 6 6 / 93%);
}

#privacyCheckerLeadForm .formItem span[for="terms"] {
    font-size: 14px;
    color: #333;
}

#privacyCheckerLeadForm .formItem span[for="terms"] a {
    color: #68ae00;
    text-decoration: underline;
}

.hide {
    display: none !important;
}


/* Privacy Checker Loading */

.scanner-container {
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.shield-container {
    position: relative;
    width: 150px;
    height: 180px;
    margin-bottom: 30px;
}

.shield {
    width: 150px;
    height: 180px;
    background: linear-gradient(135deg, #68ae00 0%, #79ca00 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.shield-inner {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-icon {
    font-size: 60px;
    color: #68ae00;
    animation: lock-bounce 2s ease-in-out infinite;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #68ae00, transparent);
    top: 0;
    animation: scan 2s linear infinite;
    box-shadow: 0 0 10px #68ae00;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #68ae00;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 3s ease-in-out infinite;
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; animation-delay: 0.5s; }
.particle:nth-child(3) { left: 60%; animation-delay: 1s; }
.particle:nth-child(4) { left: 80%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 30%; animation-delay: 0.7s; }
.particle:nth-child(6) { left: 70%; animation-delay: 1.3s; }

.status-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    animation: text-pulse 2s ease-in-out infinite;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #68ae00, #79ca00);
    border-radius: 10px;
    animation: progress 3s ease-in-out infinite;
}

.checking-items {
    width: 100%;
    text-align: center;
}

.check-item {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
    opacity: 0;
    animation: item-check 6s ease-in-out infinite;
}

.check-item:nth-child(1) { animation-delay: 0s; }
.check-item:nth-child(2) { animation-delay: 1s; }
.check-item:nth-child(3) { animation-delay: 2s; }
.check-item:nth-child(4) { animation-delay: 3s; }

.check-icon {
    color: #68ae00;
    margin-left: 5px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes lock-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes scan {
    0% { top: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes particle-float {
    0% { 
        bottom: 0; 
        opacity: 0;
        transform: translateX(0);
    }
    50% { 
        opacity: 1;
        transform: translateX(20px);
    }
    100% { 
        bottom: 180px; 
        opacity: 0;
        transform: translateX(-20px);
    }
}

@keyframes text-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes item-check {
    0%, 15%, 100% { opacity: 0; transform: translateX(-10px); }
    20%, 30% { opacity: 1; transform: translateX(0); }
}







/* FAQ Accordion */
.privacyCheckerFaq {
    margin-top: 50px;
    margin-bottom: 30px;
}

.privacyCheckerFaqItem {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.privacyCheckerFaqItem:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.privacyCheckerFaqQuestion {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.privacyCheckerFaqQuestion:hover {
    color: #68ae00;
}

.privacyCheckerFaqItem.active .privacyCheckerFaqQuestion {
    color: #68ae00;
    border-bottom: 2px solid #e0e0e0;
}

.faq-toggle-icon {
    font-size: 24px;
    font-weight: 300;
    color: #68ae00;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.privacyCheckerFaqItem.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.privacyCheckerFaqAnswer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    transition: max-height 0.25s ease-out, padding 0.25s ease-out;
}

.privacyCheckerFaqItem.active .privacyCheckerFaqAnswer {
    max-height: 2000px;
    padding: 20px 25px;
    transition: max-height 0.35s ease-in, padding 0.35s ease-in;
}

.privacyCheckerFaqAnswer p {
    margin: 0 0 15px 0;
}

.privacyCheckerFaqAnswer p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .privacyChecker {
        padding: 60px 0;
    }
    
    .privacyCheckerTitle h2 {
        font-size: 2em;
    }
    
    .privacyCheckerFormContainer,
    .privacyCheckerResults {
        padding: 25px 20px;
    }
    
    .privacyCheckerLoading {
        padding: 20px 20px;
        overflow: hidden;
        margin: auto;
    }
    
    .error-message-box,
    .success-message-box {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .error-close,
    .success-close {
        position: absolute;
        top: 10px;
        left: 10px;
    }
    
    .privacyCheckerFaqQuestion {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .privacyCheckerFaqItem.active .privacyCheckerFaqAnswer {
        padding: 15px 20px;
    }
    
    .privacyCheckerContactForm {
        padding: 20px 15px;
    }
    
    
    .summary-cards {
        padding: 20px 15px;
    }
    
    .summary-cards-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .summary-card {
        min-height: auto !important;
    }
    
    .card-number {
        font-size: 36px;
    }
    
    .card-text-top {
        font-size: 15px;
    }
    
    .card-text-bottom {
        font-size: 13px;
    }
}