:root {
    --pc-bg-primary: #050c14;
    --pc-bg-secondary: #0e1e31;
    --pc-bg-footer: #0d0d0d;
    --pc-text-primary: #ffffff;
    --pc-gradient-heading: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(199, 228, 255) 100%);
    --pc-gradient-button: linear-gradient(90deg, rgb(13, 190, 228) 0%, rgb(56, 96, 239) 100%);
    --pc-gradient-border: linear-gradient(90deg, #0dbee4 0%, #3860ef 100%);
    --pc-accent-blue: #0dbee4;
    --pc-accent-purple: #3860ef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--pc-bg-primary);
    color: var(--pc-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    line-height: 1.22;
}

.pcContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.pcHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.3s ease;
}

.pcHeader.scrolled {
    background-color: rgba(5, 12, 20, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.pcHeaderInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pcLogo {
    font-size: 28px;
    font-weight: 700;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.pcNav {
    display: flex;
    align-items: center;
}

.pcNavList {
    display: flex;
    list-style: none;
    gap: 35px;
}

.pcNavLink {
    color: var(--pc-text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.pcNavLink:hover {
    color: var(--pc-accent-blue);
}

.pcNavLink::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pc-gradient-button);
    transition: width 0.3s ease;
}

.pcNavLink:hover::after {
    width: 100%;
}

.pcNavBtn {
    margin-left: 40px;
}

.pcBtn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--pc-gradient-button);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pcBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgb(56, 96, 239) 0%, rgb(13, 190, 228) 100%);
    transition: width 0.5s ease;
    z-index: -1;
}

.pcBtn:hover::before {
    width: 100%;
}

.pcBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 190, 228, 0.3);
}

.pcMobileToggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}


.pcBanner {
    padding: 240px 0 170px;
    position: relative;
    overflow: hidden;
    background: url('../images/hero_img.avif') center left no-repeat;
    background-size: cover;
}

.pcBanner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(13, 190, 228, 0.1) 0%, rgba(56, 96, 239, 0.05) 30%, transparent 70%);
    z-index: -1;
}

.pcBannerInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pcBannerContent {
    flex: 1;
    max-width: 600px;
}

.pcBannerTitle {
    font-size: 48px;
    font-weight: 700;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pcBannerText {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.8);
}

.pcBannerBtns {
    display: flex;
    gap: 20px;
}

.pcBannerVisual {
    flex: 1;
    text-align: center;
}

.pcBannerImg {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


.pcSection {
    padding: 100px 0;
}

.pcSectionTitle {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.pcSectionText {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 60px;
}


.pcAboutInner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pcAboutContent {
    flex: 1;
}

.pcAboutTitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcAboutText {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.pcAboutVisual {
    flex: 1;
    text-align: center;
}

.pcAboutImg {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#pcServices {
    background: url('../images/shape.png') center no-repeat;
    background-size: 700px;
}


.pcServicesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pcServiceCard {
    background-color: var(--pc-bg-secondary);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pcServiceCard::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--pc-gradient-border);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pcServiceCard:hover::before {
    opacity: 1;
}

.pcServiceCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.pcServiceIcon {
    font-size: 40px;
    margin-bottom: 20px;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 0;
}

.pcServiceIcon img {
    width: 60px;
}

.pcServiceTitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pcServiceText {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}


.pcWhyInner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pcWhyVisual {
    flex: 1;
    text-align: center;
}

.pcWhyImg {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pcWhyContent {
    flex: 1;
}

.pcWhyTitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcWhyText {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.pcWhyStats {
    display: flex;
    gap: 50px;
}

.pcWhyStat {
    text-align: center;
}

.pcWhyStatNumber {
    font-size: 48px;
    font-weight: 700;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.pcWhyStatText {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}


.pcFaqContainer {
    max-width: 1000px;
    margin: 0 auto;
}

#pcFaq {
    padding-bottom: 0;
}

.pcFaqItem {
    background-color: var(--pc-bg-secondary);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.pcFaqQuestion {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.pcFaqQuestion:hover {
    color: var(--pc-accent-blue);
}

.pcFaqIcon {
    transition: transform 0.3s ease;
}

.pcFaqAnswer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.pcFaqItem.active .pcFaqAnswer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.pcFaqItem.active .pcFaqIcon {
    transform: rotate(45deg);
}

#pcCta {
    background: linear-gradient(#050c1400 26.5254%, #238ce866 104.095%);
}

.pcCta {
    text-align: center;
    padding: 80px 20px;
    box-sizing: border-box;
    background-color: var(--pc-bg-secondary);
    border-radius: 20px;
    margin: 60px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.pcCta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pc-gradient-border);
    opacity: 0.1;
    z-index: -1;
}

.pcCtaTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcCtaText {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 35px;
}


.pcFooter {
    background-color: var(--pc-bg-footer);
    padding: 40px 0 30px;
}

.pcFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.pcFooterLogo {
    font-size: 28px;
    font-weight: 700;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.pcFooterLinks {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.pcFooterLink {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pcFooterLink:hover {
    color: var(--pc-accent-blue);
}

.pcFooterMiddle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pcFooterContact {
    flex: 1;
    min-width: 250px;
}

.pcFooterContactTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.pcFooterContactInfo {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pcFooterContactInfo i {
    font-size: 14px;
}

.pcFooterNav {
    flex: 1;
    min-width: 250px;
}

.pcFooterNavTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.pcFooterNavList {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.pcFooterNavLink {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pcFooterNavLink:hover {
    color: var(--pc-accent-blue);
}

.pcFooterBottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}


.pcCookiePopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--pc-bg-secondary);
    border-radius: 15px;
    padding: 25px;
    max-width: 400px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.pcCookiePopup.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.pcCookieTitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.pcCookieText {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.pcCookieOptions {
    margin-bottom: 20px;
}

.pcCookieOption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pcCookieOptionText {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.pcCookieToggle {
    position: relative;
    width: 50px;
    height: 24px;
}

.pcCookieToggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pcCookieSlider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 34px;
}

.pcCookieSlider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.pcCookieSlider {
    background: var(--pc-gradient-button);
}

input:checked+.pcCookieSlider:before {
    transform: translateX(26px);
}

.pcCookieBtns {
    display: flex;
    gap: 15px;
}

.pcCookieBtn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Exo 2', sans-serif;
}

.pcCookieAccept {
    background: var(--pc-gradient-button);
    color: white;
}

.pcCookieReject {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.pcCookieAccept:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 190, 228, 0.3);
}

.pcCookieReject:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


#pcAboutMission {
    padding-top: 170px;
    padding-bottom: 0;
}

.pcSectionDark {
    background-color: rgba(14, 30, 49, 0.5);
    border-radius: 20px;
    margin: 40px 0 0 0;
    padding: 80px 0;
}

.pcSectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.pcSectionSubtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 10px auto 0;
}

.pcAboutMissionGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.pcAboutMissionCard {
    background: linear-gradient(145deg, rgba(14, 30, 49, 0.8), rgba(5, 12, 20, 0.9));
    border-radius: 20px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(13, 190, 228, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pcAboutMissionCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(13, 190, 228, 0.15);
}

.pcMissionIcon {
    font-size: 48px;
    margin-bottom: 25px;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcMissionTitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcMissionText {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}

.pcMissionStats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pcMissionStat {
    text-align: center;
}

.pcMissionNumber {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.pcMissionLabel {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.pcVisionList {
    list-style: none;
    margin-top: 25px;
}

.pcVisionList li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pcVisionList i {
    color: var(--pc-accent-blue);
    font-size: 18px;
}

.pcJourneyTimeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
}


.pcJourneyItem {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.pcJourneyItem:nth-child(odd) {
    flex-direction: row-reverse;
}

.pcJourneyYear {
    flex: 0 0 120px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 10px 20px;
}

.pcJourneyContent {
    flex: 1;
    background-color: rgba(14, 30, 49, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin: 0 40px;
    border: 1px solid rgba(13, 190, 228, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pcJourneyTitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.pcJourneyText {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}



.pcValuesSection {
    text-align: center;
    margin-top: 80px;
}

.pcValuesTitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcValuesGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pcValueCard {
    background-color: rgba(14, 30, 49, 0.6);
    border-radius: 15px;
    padding: 30px 25px;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.pcValueCard:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 190, 228, 0.3);
    box-shadow: 0 15px 30px rgba(13, 190, 228, 0.1);
}

.pcValueIcon {
    font-size: 36px;
    margin-bottom: 20px;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcValueName {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.pcValueDescription {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .pcAboutMissionGrid {
        grid-template-columns: 1fr;
    }

    .pcValuesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcJourneyTimeline::before {
        left: 30px;
    }

    .pcJourneyItem {
        flex-direction: row !important;
        margin-left: 60px;
    }

    .pcJourneyYear {
        flex: 0 0 80px;
        position: absolute;
        left: -60px;
        text-align: left;
    }

    .pcJourneyContent {
        margin-left: 0;
    }

    .pcJourneyDot {
        left: 30px;
    }
}

@media (max-width: 576px) {
    .pcValuesGrid {
        grid-template-columns: 1fr;
    }

    .pcAboutMissionCard {
        padding: 30px 20px;
    }

    .pcMissionStats {
        flex-direction: column;
        gap: 20px;
    }
}


#pcServicesCore {
    padding-top: 170px;
}

.pcServicesTabs {
    background: linear-gradient(145deg, rgba(14, 30, 49, 0.8), rgba(5, 12, 20, 0.9));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(13, 190, 228, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pcTabsNav {
    display: flex;
    background-color: rgba(5, 12, 20, 0.8);
    border-bottom: 1px solid rgba(13, 190, 228, 0.2);
    padding: 0 30px;
}

.pcTabBtn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.pcTabBtn i {
    font-size: 28px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.pcTabBtn.active {
    color: white;
    border-bottom-color: var(--pc-accent-blue);
}

.pcTabBtn.active i {
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcTabBtn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.9);
}

.pcTabBtn:hover:not(.active) i {
    color: var(--pc-accent-blue);
}

.pcTabsContent {
    padding: 50px;
}

.pcTabPane {
    display: none;
}

.pcTabPane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pcTabContentInner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pcTabVisual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pcTabVisualMain {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 190, 228, 0.1), rgba(56, 96, 239, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pcTabVisualMain::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px dashed rgba(13, 190, 228, 0.3);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pcTabVisualMain i {
    font-size: 80px;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcTabText {
    flex: 1;
}

.pcTabTitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcTabDescription {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}

.pcTabFeatures {
    margin-bottom: 40px;
}

.pcTabFeature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.pcTabFeature i {
    color: var(--pc-accent-blue);
    font-size: 18px;
}

.pcTabStats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pcTabStat {
    text-align: center;
}

.pcTabStatNumber {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.pcTabStatLabel {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.pcPricingGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.pcPricingCard {
    background: linear-gradient(145deg, rgba(14, 30, 49, 0.9), rgba(5, 12, 20, 0.95));
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(13, 190, 228, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pcPricingCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 190, 228, 0.15);
}

.pcPricingFeatured {
    border-color: var(--pc-accent-blue);
    box-shadow: 0 15px 30px rgba(13, 190, 228, 0.2);
}

.pcPricingBadge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pc-gradient-button);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pcPricingHeader {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pcPricingTitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.pcPricingPrice {
    margin-bottom: 15px;
}

.pcPriceAmount {
    font-size: 48px;
    font-weight: 700;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcPricePeriod {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.pcPricingSubtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.pcPricingFeatures {
    margin-bottom: 40px;
}

.pcPricingFeature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.pcPricingFeature.pcFeatureDisabled {
    color: rgba(255, 255, 255, 0.4);
}

.pcPricingFeature i {
    color: var(--pc-accent-blue);
    font-size: 16px;
}

.pcPricingFeature.pcFeatureDisabled i {
    color: rgba(255, 255, 255, 0.4);
}

.pcPricingBtn {
    display: block;
    text-align: center;
    width: 100%;
}

.pcComparisonSection {
    background-color: rgba(14, 30, 49, 0.6);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcComparisonTitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcComparisonTable {
    overflow-x: auto;
}

.pcComparisonRow {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.pcComparisonRow.pcComparisonHeader {
    background-color: rgba(5, 12, 20, 0.5);
    font-weight: 600;
    color: white;
    border-radius: 8px 8px 0 0;
}

.pcComparisonFeature,
.pcComparisonPlan {
    padding: 10px 15px;
}

.pcComparisonPlan {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .pcPricingGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcTabContentInner {
        flex-direction: column;
        text-align: center;
    }

    .pcTabStats {
        justify-content: center;
    }

    .pcTabsNav {
        flex-wrap: wrap;
    }

    .pcTabBtn {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .pcPricingGrid {
        grid-template-columns: 1fr;
    }

    .pcTabsContent {
        padding: 30px 20px;
    }

    .pcComparisonRow {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        min-width: 600px;
    }
}

@media (max-width: 576px) {
    .pcTabBtn {
        flex: 0 0 100%;
    }

    .pcTabBtn i {
        margin-bottom: 5px;
    }

    .pcTabVisualMain {
        width: 150px;
        height: 150px;
    }

    .pcTabVisualMain::before {
        width: 170px;
        height: 170px;
    }

    .pcTabVisualMain i {
        font-size: 60px;
    }
}



.pcFullWidth {
    width: 100%;
    background: linear-gradient(135deg, rgba(14, 30, 49, 0.9) 0%, rgba(5, 12, 20, 0.95) 100%);
    position: relative;
    overflow: hidden;
}



.pcContactHeader {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.pcContactTitle {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcContactSubtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.pcContactInfoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.pcContactCard {
    background: rgba(5, 12, 20, 0.7);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(13, 190, 228, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pcContactCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pc-gradient-border);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pcContactCard:hover::before {
    opacity: 1;
}

.pcContactCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(13, 190, 228, 0.3);
}

.pcContactCardPrimary {
    border-color: var(--pc-accent-blue);
    box-shadow: 0 15px 30px rgba(13, 190, 228, 0.15);
}

.pcContactIcon {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcContactCardTitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.pcContactCardText {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.5;
}

.pcContactLink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--pc-accent-blue);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.pcContactLink:hover {
    color: white;
}

.pcContactAddress,
.pcContactHours,
.pcContactResponse,
.pcContactStatus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 15px;
}

.pcContactChatBtn {
    width: 100%;
    margin-bottom: 15px;
}

.pcContactChatBtn i {
    margin-right: 10px;
}

.pcStatusDot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff4757;
}

.pcStatusOnline {
    background-color: #2ed573;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pcSupportStats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: rgba(5, 12, 20, 0.8);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(13, 190, 228, 0.1);
    position: relative;
    z-index: 1;
}

.pcSupportStat {
    text-align: center;
}

.pcSupportStatNumber {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.pcSupportStatLabel {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.pcFormSection {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(14, 30, 49, 0.9), rgba(5, 12, 20, 0.95));
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(13, 190, 228, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pcFormHeader {
    text-align: center;
    margin-bottom: 50px;
}

.pcFormTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcFormSubtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.pcSupportForm {
    margin-bottom: 40px;
}

.pcFormGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pcFormGroup.pcFormFullWidth {
    grid-column: span 2;
}

.pcFormLabel {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
}

.pcFormInput,
.pcFormTextarea {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(5, 12, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pcFormInput:focus,
.pcFormTextarea:focus {
    outline: none;
    border-color: var(--pc-accent-blue);
    box-shadow: 0 0 0 3px rgba(13, 190, 228, 0.1);
}

.pcFormTextarea {
    resize: vertical;
    min-height: 120px;
}

.pcFormError {
    color: #ff4757;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
    display: none;
}

.pcFormCheckbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
}

.pcFormCheckbox input {
    display: none;
}

.pcCheckboxCustom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.pcFormCheckbox input:checked+.pcCheckboxCustom {
    background-color: var(--pc-accent-blue);
    border-color: var(--pc-accent-blue);
}

.pcFormCheckbox input:checked+.pcCheckboxCustom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.pcCheckboxText a {
    color: var(--pc-accent-blue);
    text-decoration: none;
}

.pcCheckboxText a:hover {
    text-decoration: underline;
}

.pcFormSubmitBtn {
    position: relative;
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

.pcFormLoader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pcLoaderDot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    animation: loaderAnimation 1.4s infinite ease-in-out both;
}

.pcLoaderDot:nth-child(1) {
    animation-delay: -0.32s;
}

.pcLoaderDot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loaderAnimation {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.pcBtnText {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.pcFormSubmitBtn.sending .pcBtnText {
    opacity: 0;
}

.pcFormSubmitBtn.sending .pcFormLoader {
    display: block;
}

.pcFormSuccess {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(13, 190, 228, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(13, 190, 228, 0.2);
    animation: fadeIn 0.5s ease;
}

.pcSuccessIcon {
    font-size: 64px;
    color: #2ed573;
    margin-bottom: 25px;
}

.pcSuccessTitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.pcSuccessText {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.pcSuccessActions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.pcSuccessBtn,
.pcSuccessBtnSecondary {
    padding: 12px 30px;
}

.pcSuccessBtnSecondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pcFormNote {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(5, 12, 20, 0.6);
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
    border-left: 4px solid var(--pc-accent-blue);
}

.pcFormNote i {
    color: var(--pc-accent-blue);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pcFormNote p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.pcFormNote a {
    color: var(--pc-accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.pcFormNote a:hover {
    text-decoration: underline;
}

#pcContactInfo {
    padding-top: 170px;
}

@media (max-width: 992px) {
    .pcContactInfoGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcSupportStats {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcFormGrid {
        grid-template-columns: 1fr;
    }

    .pcFormGroup.pcFormFullWidth {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .pcContactInfoGrid {
        grid-template-columns: 1fr;
    }

    .pcSupportStats {
        grid-template-columns: 1fr;
    }

    .pcFormSection {
        padding: 30px 20px;
    }

    .pcSuccessActions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .pcContactTitle {
        font-size: 32px;
    }

    .pcFormTitle {
        font-size: 28px;
    }
}


.pcPolicyHeader {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pcPolicyMainTitle {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcPolicyLastUpdated {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-style: italic;
}

.pcPolicyIntro {
    max-width: 800px;
    margin: 0 auto;
}

.pcPolicyIntro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.pcPolicyContent {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
}

.pcPolicyNav {
    position: sticky;
    top: 100px;
    align-self: start;
    background: rgba(14, 30, 49, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcPolicyNavTitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pcPolicyNavList {
    list-style: none;
}

.pcPolicyNavLink {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.pcPolicyNavLink::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--pc-accent-blue);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pcPolicyNavLink:hover {
    color: var(--pc-accent-blue);
    padding-left: 25px;
}

.pcPolicyNavLink:hover::before {
    opacity: 1;
}

.pcPolicySection {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pcPolicySection:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pcPolicySectionHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.pcPolicySectionTitle {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.pcPolicySectionNumber {
    font-size: 48px;
    font-weight: 800;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.3;
    line-height: 1;
}

.pcPolicySectionContent {
    padding-left: 20px;
}

.pcPolicySubtitle {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: white;
}

.pcPolicyList {
    list-style: none;
    margin: 15px 0 25px;
    padding-left: 20px;
}

.pcPolicyList li {
    position: relative;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
}

.pcPolicyList li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: var(--pc-accent-blue);
    font-size: 20px;
}

.pcUsageGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.pcUsageCard {
    background: rgba(5, 12, 20, 0.6);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(13, 190, 228, 0.1);
    transition: transform 0.3s ease;
}

.pcUsageCard:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 190, 228, 0.3);
}

.pcUsageIcon {
    font-size: 32px;
    margin-bottom: 15px;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcUsageTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.pcUsageText {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.pcPolicyNote {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(13, 190, 228, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcNoteIcon {
    font-size: 24px;
    color: var(--pc-accent-blue);
    flex-shrink: 0;
}

.pcNoteContent p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.pcSharingList {
    margin: 20px 0;
}

.pcSharingItem {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pcSharingItem:last-child {
    border-bottom: none;
}

.pcSharingDot {
    width: 8px;
    height: 8px;
    background: var(--pc-accent-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.pcSecurityGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.pcSecurityMeasure {
    background: rgba(5, 12, 20, 0.6);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcSecurityIcon {
    font-size: 36px;
    margin-bottom: 15px;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcSecurityTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.pcSecurityText {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.pcSecurityNote {
    background: rgba(13, 190, 228, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    border-left: 4px solid var(--pc-accent-blue);
}

.pcSecurityNote p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.pcRightsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.pcRightCard {
    background: rgba(5, 12, 20, 0.6);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcRightTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.pcRightCard p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.pcContactRights {
    background: rgba(13, 190, 228, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.pcContactRights p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 10px;
    line-height: 1.6;
}

.pcContactRights a {
    color: var(--pc-accent-blue);
    text-decoration: none;
}

.pcContactRights a:hover {
    text-decoration: underline;
}

.pcUpdateMethods {
    margin: 30px 0;
}

.pcUpdateMethod {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(5, 12, 20, 0.6);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcUpdateIcon {
    font-size: 28px;
    color: var(--pc-accent-blue);
    flex-shrink: 0;
}

.pcUpdateContent h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.pcUpdateContent p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.pcPolicyFinal {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pcPolicyFinal p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.pcPolicyAddress {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--pc-accent-blue);
}

@media (max-width: 992px) {
    .pcPolicyContent {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pcPolicyNav {
        position: static;
    }

    .pcUsageGrid,
    .pcSecurityGrid,
    .pcRightsGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pcPolicyMainTitle {
        font-size: 32px;
    }

    .pcPolicySectionTitle {
        font-size: 26px;
    }

    .pcPolicySectionHeader {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pcPolicySectionNumber {
        font-size: 36px;
        order: -1;
    }

    .pcPolicySectionContent {
        padding-left: 0;
    }
}


#pcPrivacyPolicy {
    padding-top: 170px;
}



.pcTermsHeader {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pcTermsMainTitle {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcTermsEffective {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-style: italic;
}

.pcTermsIntro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.pcTermsIntro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.pcTermsQuickNav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.pcTermsQuickLink {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(14, 30, 49, 0.6);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcTermsQuickLink:hover {
    background: rgba(13, 190, 228, 0.1);
    color: white;
    transform: translateY(-2px);
}

.pcTermsSection {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(14, 30, 49, 0.3);
    border-radius: 15px;
    border-left: 4px solid var(--pc-accent-blue);
}

.pcTermsSectionTitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pcTermsSectionNum {
    font-size: 40px;
    font-weight: 800;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.pcTermsSectionContent {
    padding-left: 20px;
}

.pcTermsList {
    margin: 20px 0;
}

.pcTermsListItem {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pcTermsListItem:last-child {
    border-bottom: none;
}

.pcTermsListMarker {
    font-weight: 600;
    color: var(--pc-accent-blue);
    flex-shrink: 0;
    width: 40px;
}

.pcTermsListContent p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.pcTermsSubsection {
    margin-bottom: 30px;
}

.pcTermsSubsection:last-child {
    margin-bottom: 0;
}

.pcTermsSubtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: white;
}

.pcTermsBulletList {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0;
}

.pcTermsBulletList li {
    position: relative;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
}

.pcTermsBulletList li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: var(--pc-accent-blue);
    font-size: 20px;
}

.pcAccountTypes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.pcAccountType {
    background: rgba(5, 12, 20, 0.6);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcAccountTypeTitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.pcAccountType p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.pcUsePolicyGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 25px 0;
}

.pcUsePolicyCard {
    border-radius: 12px;
    padding: 25px;
    border: 1px solid;
}

.pcUsePolicyAllowed {
    background: rgba(46, 213, 115, 0.05);
    border-color: rgba(46, 213, 115, 0.2);
}

.pcUsePolicyProhibited {
    background: rgba(255, 71, 87, 0.05);
    border-color: rgba(255, 71, 87, 0.2);
}

.pcUsePolicyIcon {
    font-size: 32px;
    margin-bottom: 15px;
}

.pcUsePolicyAllowed .pcUsePolicyIcon {
    color: #2ed573;
}

.pcUsePolicyProhibited .pcUsePolicyIcon {
    color: #ff4757;
}

.pcUsePolicyTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.pcUsePolicyList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pcUsePolicyList li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 25px;
}

.pcUsePolicyAllowed .pcUsePolicyList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ed573;
    font-weight: bold;
}

.pcUsePolicyProhibited .pcUsePolicyList li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff4757;
    font-weight: bold;
}

.pcTermsWarning {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 165, 0, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.pcWarningIcon {
    font-size: 24px;
    color: #ffa500;
    flex-shrink: 0;
}

.pcWarningContent p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.pcIPGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 25px 0;
}

.pcIPCard {
    background: rgba(5, 12, 20, 0.6);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(13, 190, 228, 0.1);
    text-align: center;
}

.pcIPTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.pcIPText {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

.pcIPItems {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pcIPItem {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(13, 190, 228, 0.1);
    color: var(--pc-accent-blue);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.pcBillingGrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 25px 0;
}

.pcBillingInfo {
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pcBillingTitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.pcBillingInfo>p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.pcBillingFeatures {
    margin-top: 25px;
}

.pcBillingFeature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.pcBillingFeature i {
    font-size: 20px;
    color: var(--pc-accent-blue);
    margin-top: 3px;
    flex-shrink: 0;
}

.pcBillingFeature h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.pcBillingFeature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.pcBillingTable {
    overflow-x: auto;
}

.pcBillingTableContent {
    width: 100%;
    border-collapse: collapse;
    background: rgba(5, 12, 20, 0.6);
    border-radius: 10px;
    overflow: hidden;
}

.pcBillingTableContent th,
.pcBillingTableContent td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pcBillingTableContent th {
    background: rgba(13, 190, 228, 0.1);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.pcBillingTableContent td {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.pcBillingTableContent tr:last-child td {
    border-bottom: none;
}

.pcTerminationInfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 25px 0;
}

.pcTerminationTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.pcTerminationByUser p,
.pcTerminationByUs p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pcTerminationSteps {
    margin-top: 20px;
}

.pcTerminationStep {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pcTerminationStep:last-child {
    border-bottom: none;
}

.pcStepNum {
    width: 30px;
    height: 30px;
    background: var(--pc-gradient-button);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.pcTerminationStep span:last-child {
    color: rgba(255, 255, 255, 0.8);
}

.pcTerminationList {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.pcTerminationList li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 25px;
}

.pcTerminationList li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #ffa500;
}

.pcDisclaimerGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 25px 0;
}

.pcDisclaimerCard {
    background: rgba(5, 12, 20, 0.6);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcDisclaimerTitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.pcDisclaimerCard p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.pcGoverningLaw {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pcGoverningTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.pcGoverningLaw>p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.pcContactLegal {
    background: rgba(13, 190, 228, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.pcContactLegal p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.pcContactLegal address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.pcContactLegal a {
    color: var(--pc-accent-blue);
    text-decoration: none;
}

.pcContactLegal a:hover {
    text-decoration: underline;
}

.pcTermsFooter {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pcTermsFooter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pcTermsFinal {
    font-weight: 500;
    color: white;
    font-style: italic;
}

@media (max-width: 992px) {

    .pcUsePolicyGrid,
    .pcIPGrid,
    .pcBillingGrid,
    .pcTerminationInfo,
    .pcDisclaimerGrid {
        grid-template-columns: 1fr;
    }

    .pcAccountTypes {
        grid-template-columns: 1fr;
    }

    .pcBillingInfo {
        padding-right: 0;
        border-right: none;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

#pcTermsServices {
    padding-top: 170px;
}

@media (max-width: 768px) {
    .pcTermsMainTitle {
        font-size: 32px;
    }

    .pcTermsSectionTitle {
        font-size: 24px;
    }

    .pcTermsSection {
        padding: 20px;
    }

    .pcTermsQuickNav {
        gap: 10px;
    }

    .pcTermsQuickLink {
        padding: 8px 15px;
        font-size: 13px;
    }
}

.pcCookiesHeader {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pcCookiesMainTitle {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--pc-gradient-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pcCookiesUpdated {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-style: italic;
}

.pcCookiesIntro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.pcCookiesIntro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.pcCookiesSummary {
    max-width: 600px;
    margin: 0 auto;
}

.pcCookiesSummaryCard {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(145deg, rgba(14, 30, 49, 0.8), rgba(5, 12, 20, 0.9));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcSummaryIcon {
    font-size: 48px;
    background: var(--pc-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
}

.pcSummaryContent {
    flex: 1;
}

.pcSummaryTitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.pcSummaryText {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.pcCookiesSectionTitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.pcCookiesTableSection {
    margin-bottom: 60px;
}

.pcCookiesTable {
    background: rgba(14, 30, 49, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcCookiesTableHeader {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 1fr;
    padding: 20px 25px;
    background: rgba(5, 12, 20, 0.8);
    font-weight: 600;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pcCookiesTableRow {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 1fr;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.pcCookiesTableRow:last-child {
    border-bottom: none;
}

.pcCookieEssential {
    border-left: 4px solid #2ed573;
}

.pcCookieAnalytics {
    border-left: 4px solid #1e90ff;
}

.pcCookieMarketing {
    border-left: 4px solid #ff6b81;
}

.pcCookiePreferences {
    border-left: 4px solid #ffa502;
}

.pcCookieTypeTitle {
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.pcCookieTypeStatus {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.pcCookiePurpose {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    padding-right: 20px;
}

.pcCookieDuration {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.pcCookieRequired {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.pcCookieToggle {
    display: inline-block;
}

.pcToggleLabel {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.pcToggleLabel input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pcToggleSlider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 34px;
}

.pcToggleSlider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.pcToggleSlider {
    background-color: #2ed573;
}

input:checked+.pcToggleSlider:before {
    transform: translateX(26px);
}

.pcCookiesDetails {
    margin-bottom: 60px;
}

.pcDetailTitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.pcCookieProviders {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.pcProviderCard {
    background: rgba(5, 12, 20, 0.6);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcProviderHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.pcProviderName {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.pcProviderCategory {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(13, 190, 228, 0.1);
    color: var(--pc-accent-blue);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.pcProviderDescription {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pcProviderCookies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pcProviderCookie {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    font-size: 12px;
    font-family: monospace;
}

.pcControlMethods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pcControlMethod {
    display: flex;
    gap: 20px;
    background: rgba(5, 12, 20, 0.6);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcControlIcon {
    font-size: 32px;
    color: var(--pc-accent-blue);
    flex-shrink: 0;
    margin-top: 5px;
}

.pcControlContent {
    flex: 1;
}

.pcControlTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.pcControlText {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pcControlLinks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pcControlLinks li {
    margin-bottom: 8px;
}

.pcControlLinks a {
    color: var(--pc-accent-blue);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pcControlLinks a:hover {
    text-decoration: underline;
}

.pcControlLinks a::after {
    content: '↗';
    font-size: 12px;
}

.pcControlNotice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 165, 0, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.pcNoticeIcon {
    font-size: 24px;
    color: #ffa500;
    flex-shrink: 0;
}

.pcNoticeContent p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.pcTechGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.pcTechCard {
    background: rgba(5, 12, 20, 0.6);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcTechTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.pcTechDescription {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.pcCookiesFAQ {
    margin-bottom: 60px;
}

.pcCookieFAQItems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.pcCookieFAQItem {
    background: rgba(14, 30, 49, 0.6);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcFAQQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.pcFAQAnswer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.pcCookiesContact {
    background: rgba(13, 190, 228, 0.05);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(13, 190, 228, 0.1);
}

.pcContactTitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.pcCookiesContact>p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.pcContactInfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pcContactMethod {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.pcContactMethod i {
    font-size: 24px;
    color: var(--pc-accent-blue);
    margin-top: 5px;
    flex-shrink: 0;
}

.pcContactMethod h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.pcContactMethod p,
.pcContactMethod address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    font-style: normal;
}

.pcContactMethod a {
    color: var(--pc-accent-blue);
    text-decoration: none;
}

.pcContactMethod a:hover {
    text-decoration: underline;
}

.pcPolicyLinks {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.pcPolicyLinks>p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.pcPolicyLinksList {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.pcPolicyLink {
    color: var(--pc-accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pcPolicyLink:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 992px) {

    .pcCookiesTableHeader,
    .pcCookiesTableRow {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pcCookieProviders,
    .pcControlMethods,
    .pcTechGrid,
    .pcCookieFAQItems,
    .pcContactInfo {
        grid-template-columns: 1fr;
    }

    .pcCookiePurpose {
        padding-right: 0;
    }
}

#pcCookiesPolicy{
    padding-top: 170px;
}

@media (max-width: 768px) {
    .pcCookiesMainTitle {
        font-size: 32px;
    }

    .pcCookiesSectionTitle {
        font-size: 26px;
    }

    .pcCookiesSummaryCard {
        flex-direction: column;
        text-align: center;
    }

    .pcControlMethod {
        flex-direction: column;
        text-align: center;
    }

    .pcControlIcon {
        margin: 0 auto 15px;
    }

    .pcCookiesContact {
        padding: 30px 20px;
    }
}















































@media (max-width: 992px) {
    .pcServicesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcBannerInner {
        flex-direction: column;
        text-align: center;
    }

    .pcBannerContent {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .pcBannerTitle {
        font-size: 40px;
    }

    .pcAboutInner,
    .pcWhyInner {
        flex-direction: column;
    }

    .pcWhyStats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pcNav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(5, 12, 20, 0.98);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        backdrop-filter: blur(10px);
    }

    .pcNav.active {
        display: flex;
    }

    .pcNavList {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-bottom: 20px;
    }

    .pcNavBtn {
        margin-left: 0;
        width: 100%;
    }

    .pcBtn {
        display: block;
        text-align: center;
    }

    .pcMobileToggle {
        display: block;
    }

    .pcBanner {
        padding: 150px 0 80px;
    }

    .pcBannerTitle {
        font-size: 32px;
    }

    .pcSectionTitle {
        font-size: 30px;
    }

    .pcServicesGrid {
        grid-template-columns: 1fr;
    }

    .pcCookiePopup {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .pcBannerTitle {
        font-size: 28px;
    }

    .pcBannerBtns {
        flex-direction: column;
        gap: 15px;
    }

    .pcSection {
        padding: 50px 0;
    }

    .pcWhyStats {
        flex-direction: column;
        gap: 30px;
    }

    .pcFooterTop {
        flex-direction: column;
        align-items: flex-start;
    }

    .pcFooterMiddle {
        flex-direction: column;
    }

    .pcAboutContent {
        text-align: center;
    }

    .pcAboutInner {
        gap: 30px;
    }

    #pcCta {
        padding: 20px 0 20px 0;
    }

    .pcBanner {
        padding-bottom: 40px;
    }

}