:root {
    --primary-bg: #fff;
    --secondary-bg: #f5f7f7;
    --footer-bg: #063231;
    --title-color: #063231;
    --accent-color: #f75709;
    --highlight-color: #c3df94;
    --text-color: #063231;
    --divider-color: #d7dede;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--title-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--title-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btnAccent {
    background-color: var(--accent-color);
}

.btnHighlight {
    background-color: var(--highlight-color);
    color: var(--title-color);
}

.sectionTitle {
    margin-bottom: 3rem;
    text-align: center;
}

.sectionSubtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.chpTopLine .chpContactInfo {
    padding: 0;
}

.chpTopLine {
    background-color: var(--secondary-bg);
    padding: 8px 0;
    font-size: 0.85rem;
}

.chpTopLineContent {
    display: flex;
    justify-content: space-between;
}


.chpHeader {
    padding: 15px 0;
    position: absolute;
    max-width: 1200px;
    width: 98%;
    border-radius: 8px;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: var(--primary-bg);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.chpHeaderContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chpLogo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--title-color);
}

.chpLogo span {
    color: #f75709;
}

.chpNav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.chpNavList {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.chpNavItem {
    margin-left: 30px;
    position: relative;
}

.chpNavLink {
    font-weight: 500;
    position: relative;
}

.chpNavLink:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.chpNavLink:hover:after {
    width: 100%;
}

.chpMobileToggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--title-color);
}


.chpBanner {
    padding: 240px 0 140px 0;
    background-image: url('../images/hero-bg-3.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.chpBannerContent {
    position: relative;
    max-width: 600px;
}

.chpBannerTitle {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.chpBannerTitle span {
    color: var(--highlight-color);
}

.chpBannerText {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #fff;
}


.chpServices {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.chpServicesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.chpServiceCard {
    background-color: var(--secondary-bg);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.chpServiceCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chpServiceIcon {
    width: 70px;
    height: 70px;
    background-color: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--title-color);
}

.chpServiceTitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
}


.chpAbout {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.chpAboutContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chpAboutImage {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chpAboutImage img {
    width: 100%;
    height: auto;
    display: block;
}

.chpAboutText {
    margin-bottom: 2rem;
}


.chpStats {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.chpStatsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.chpStatItem {
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.chpStatItem:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: var(--divider-color);
}

.chpStatNumber {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 5px;
}

.chpStatPlus {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-block;
    margin-left: 5px;
}

.chpStatTitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
}


.chpProcess {
    padding: 70px 0 100px 0;
    background-color: var(--footer-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.chpProcess h2 {
    color: #fff;
}

.chpProcess:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('../images/3.svg');
    background-repeat: no-repeat;
    background-position: top right;
}

.chpProcess .sectionTitle,
.chpProcess .sectionSubtitle {
    color: white;
}

.chpProcessGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.chpProcessStep {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.chpProcessStep:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.chpProcessNumber {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.chpProcessTitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}


.chpTestimonials {
    padding: 100px 0 70px 0;
    background-color: var(--primary-bg);
}

.chpTestimonialsContent {
    display: flex;
    align-items: center;
    gap: 60px;
    align-items: center;
}

.chpTestimonialsSlider {
    position: relative;
    width: 50%;

}

.chpTestimonialSlide {
    background-color: var(--secondary-bg);
    padding: 40px;
    border-radius: 8px;
}

.chpTestimonialStars {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.chpTestimonialText {
    font-style: italic;
    margin-bottom: 25px;
}

.chpTestimonialAuthor {
    display: flex;
    align-items: center;
}

.chpTestimonialAvatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.chpTestimonialAvatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chpTestimonialName {
    font-weight: 600;
}

.chpTestimonialPosition {
    font-size: 0.9rem;
    color: #777;
}


.chpCta {
    padding: 100px 0;
    background-color: var(--secondary-bg);
    text-align: center;
    border-radius: 15px;
    max-width: 1160px;
    width: 100%;
    margin: 20px auto 40px auto;
}

.chpCtaTitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.chpCtaText {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}


.chpFooter {
    background-color: var(--footer-bg);
    color: white;
    padding: 80px 0 30px;
}

.chpFooterContent {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.chpFooterLogo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
    display: inline-block;
}

.chpFooterLogo span {
    color: var(--highlight-color);
}

.chpFooterAbout {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.chpFooterTitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
}

.chpFooterList {
    list-style: none;
}

.chpFooterItem {
    margin-bottom: 12px;
}

.chpFooterLink {
    transition: all 0.3s ease;
}

.chpFooterLink:hover {
    color: var(--highlight-color);
}

.chpFooterContactItem {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.chpFooterContactIcon {
    margin-right: 10px;
    color: var(--highlight-color);
    margin-top: 5px;
}

.chpFooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}


.chpCookiePopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-bg);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    z-index: 1001;
    display: none;
}

.chpCookieTitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.chpCookieText {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.chpCookieActions {
    display: flex;
    gap: 10px;
}

.chpCookieBtn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.chpCookieAccept {
    background-color: var(--title-color);
    color: white;
}

.chpCookieDecline {
    background-color: var(--secondary-bg);
    color: var(--text-color);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chpAnimate {
    animation: fadeInUp 0.8s ease forwards;
}

.chpBreadcrumbs {
    padding: 20px 0;
    background-color: var(--secondary-bg);
}

.chpBreadcrumbsNav {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.chpBreadcrumbsSeparator {
    margin: 0 10px;
    color: var(--accent-color);
}

.chpBreadcrumbsCurrent {
    color: var(--accent-color);
    font-weight: 600;
}

.chpAboutHero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.chpAboutHeroContent {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.chpAboutHeroTitle {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.chpAboutHeroText {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.chpAboutHeroStats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 4rem;
}

.chpAboutHeroStat {
    text-align: center;
}

.chpAboutHeroNumber {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 10px;
}

.chpAboutHeroNumber span {
    color: var(--accent-color);
}

.chpAboutHeroLabel {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.chpApproach {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.chpApproachContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.chpApproachText h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.chpApproachFeatures {
    margin-top: 3rem;
}

.chpApproachFeature {
    display: flex;
    margin-bottom: 2.5rem;
}

.chpApproachIcon {
    width: 60px;
    height: 60px;
    background-color: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--title-color);
}

.chpApproachFeatureContent h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.chpApproachVisual {
    position: relative;
    height: 500px;
}

.chpApproachMainImage {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    line-height: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.chpApproachMainImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chpApproachCard {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 120px;
    transition: all 0.3s ease;
}

.chpApproachCard:hover {
    transform: translateY(-5px);
}

.chpApproachCard i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.chpApproachCard h5 {
    font-size: 0.9rem;
    margin: 0;
}

.chpApproachCard1 {
    top: 10%;
    left: -20px;
}

.chpApproachCard2 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.chpApproachCard3 {
    bottom: 10%;
    left: -20px;
}

@media (max-width: 768px) {
    .chpAboutHeroTitle {
        font-size: 2.5rem;
    }

    .chpAboutHeroStats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .chpApproachContent {
        grid-template-columns: 1fr;
    }

    .chpApproachVisual {
        height: 400px;
    }

    .chpApproachCard {
        position: relative;
        margin-bottom: 20px;
        width: 100%;
    }

    .chpApproachCard1,
    .chpApproachCard2,
    .chpApproachCard3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
}

.chpServicesHero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    text-align: center;
}

.chpServicesHeroContent {
    max-width: 800px;
    margin: 0 auto;
}

.chpServicesHeroTitle {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.chpServicesHeroText {
    font-size: 1.2rem;
    color: #666;
}

.chpServicesDetailed {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.chpServicesTabNav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    justify-content: center;
}

.chpServicesTabLink {
    padding: 15px 25px;
    background: var(--secondary-bg);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.chpServicesTabLink.active,
.chpServicesTabLink:hover {
    background: var(--accent-color);
    color: white;
}

.chpServicesTabPane {
    display: none;
}

.chpServicesTabPane.active {
    display: block;
}



.chpServiceDetailText h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.chpServiceFeatures {
    margin: 2rem 0;
}

.chpServiceFeature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.chpServiceFeature i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.chpServiceDetailVisual {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 15px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chpServiceChart {
    width: 100%;
}

.chpChartBar {
    margin-bottom: 20px;
}

.chpChartLabel {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.chpChartBarInner {
    height: 20px;
    background: var(--highlight-color);
    border-radius: 10px;
    width: 0;
    transition: width 1s ease;
}

.chpInvestmentGraph {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 200px;
}

.chpGraphLine {
    width: 30px;
    background: var(--highlight-color);
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
}

.chpGraphLine.active {
    background: var(--accent-color);
}

.chpServiceProcess {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.chpProcessSteps {
    margin-top: 3rem;
}

.chpProcessSteps .chpProcessStep {
    padding: 0;
    margin-bottom: 40px;
}


.chpProcessStepNumber {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.chpProcessStepContent {
    text-align: left;
}

.chpProcessStepContent h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.chpProcessCircle {
    width: 400px;
    height: 400px;
    position: relative;
    margin: 0 auto;
}

.chpProcessSegment {
    position: absolute;
    width: 50%;
    height: 50%;
    overflow: hidden;
    transform-origin: 100% 100%;
}

.chpProcessSegment1 {
    top: 0;
    left: 0;
    transform: rotate(0deg) skew(30deg);
}

.chpProcessSegment2 {
    top: 0;
    right: 0;
    transform: rotate(90deg) skew(30deg);
}

.chpProcessSegment3 {
    bottom: 0;
    right: 0;
    transform: rotate(180deg) skew(30deg);
}

.chpProcessSegment4 {
    bottom: 0;
    left: 0;
    transform: rotate(270deg) skew(30deg);
}

.chpSegmentContent {
    position: absolute;
    width: 200%;
    height: 200%;
    text-align: center;
    transform: skew(-30deg) rotate(-45deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.chpProcessSegment1 .chpSegmentContent {
    background: var(--accent-color);
}

.chpProcessSegment2 .chpSegmentContent {
    background: var(--title-color);
}

.chpProcessSegment3 .chpSegmentContent {
    background: var(--highlight-color);
    color: var(--title-color);
}

.chpProcessSegment4 .chpSegmentContent {
    background: #666;
}

.chpSegmentContent i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.chpProcessCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

@media (max-width: 768px) {
    .chpServicesHeroTitle {
        font-size: 2.5rem;
    }

    .chpServicesTabNav {
        flex-direction: column;
    }

    .chpServiceDetail {
        grid-template-columns: 1fr;
    }

    .chpServiceProcessContent {
        grid-template-columns: 1fr;
    }

    .chpProcessCircle {
        width: 300px;
        height: 300px;
    }

    .chpProcessCenter {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
}




.chpBreadcrumbs {
    padding: 20px 0;
    background-color: var(--secondary-bg);
}

.chpBreadcrumbsNav {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.chpBreadcrumbsSeparator {
    margin: 0 10px;
    color: var(--accent-color);
}

.chpBreadcrumbsCurrent {
    color: var(--accent-color);
    font-weight: 600;
}

.chpContactInfo {
    padding: 80px 0;
    background-color: var(--secondary-bg);
}

.chpContactInfoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.chpContactInfoItem {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.chpContactInfoItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.chpContactInfoIcon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: white;
}

.chpContactInfoContent h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--title-color);
}

.chpContactInfoContent p {
    margin-bottom: 0;
}

.chpContactInfoContent a {
    color: var(--text-color);
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.chpContactInfoContent a:hover {
    color: var(--accent-color);
}

.chpContactFormSection {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.chpContactFormContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.chpContactFormIntro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--title-color);
}

.chpContactFormIntro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.chpContactFeatures {
    margin-top: 3rem;
}

.chpContactFeature {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.chpContactFeature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.chpContactFeature h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--title-color);
}

.chpContactFeature p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.chpContactFormWrapper {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.chpContactForm {
    display: block;
}

.chpFormRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.chpFormGroup {
    margin-bottom: 20px;
}

.chpFormGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--title-color);
    font-size: 0.95rem;
}

.chpFormGroup input,
.chpFormGroup select,
.chpFormGroup textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.chpFormGroup input:focus,
.chpFormGroup select:focus,
.chpFormGroup textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(247, 87, 9, 0.1);
}

.chpFormGroup textarea {
    resize: vertical;
    min-height: 120px;
}

.chpFormSubmit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.chpFormSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 50, 49, 0.3);
}

.chpFormSubmit:active {
    transform: translateY(0);
}

.chpFormSuccess {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chpSuccessIcon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.chpFormSuccess h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.chpFormSuccess p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}


.chpFormSubmit.loading {
    position: relative;
    color: transparent;
}

.chpFormSubmit.loading:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: chpSpin 0.8s linear infinite;
}

@keyframes chpSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@media (max-width: 992px) {
    .chpContactInfoGrid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .chpContactFormContent {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .chpContactFormContent {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chpContactFormIntro h2 {
        font-size: 2rem;
    }

    .chpFormRow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .chpContactFormWrapper {
        padding: 30px 25px;
    }

    .chpContactInfoItem {
        padding: 25px;
    }

    .chpContactInfoIcon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .chpContactInfo {
        padding: 60px 0;
    }

    .chpContactFormSection {
        padding: 60px 0;
    }

    .chpContactFormWrapper {
        padding: 25px 20px;
    }

    .chpContactFeature {
        flex-direction: column;

    }

    .chpContactFeature i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.chpPolicyHeader {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.chpPolicyHeaderContent {
    text-align: center;
}

.chpPolicyHeader h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.chpPolicyMeta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    color: #666;
}

.chpPolicyContent {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.chpPolicyMain {
    max-width: 900px;
    margin: 0 auto;
}

.chpPolicySection {
    margin-bottom: 50px;
}

.chpPolicySection h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--title-color);
    border-bottom: 2px solid var(--highlight-color);
    padding-bottom: 10px;
}

.chpPolicySection h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--title-color);
}

.chpPolicySection p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.chpPolicySection ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.chpPolicySection li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.chpPolicyContact {
    background: var(--secondary-bg);
    padding: 25px;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.chpPolicyContact p {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .chpPolicyHeader h1 {
        font-size: 2.2rem;
    }

    .chpPolicyMeta {
        flex-direction: column;
        gap: 10px;
    }

    .chpPolicySection h2 {
        font-size: 1.5rem;
    }
}

.chpPolicyNotice {
    background: #fff8e6;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
}

.chpNoticeIcon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.chpPolicyNotice p {
    margin: 0;
    line-height: 1.6;
}

.chpCookiesOverview {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.chpCookiesIntro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.chpCookiesDefinition {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--divider-color);
}

.chpCookieType {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--highlight-color);
}

.chpCookieType h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.chpCookieExamples {
    background: var(--secondary-bg);
    padding: 15px;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.chpCookiesUsage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 2rem;
}

.chpUsageItem {
    display: flex;
    align-items: flex-start;
}

.chpUsageIcon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.chpUsageContent h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--title-color);
}

.chpUsageContent p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.chpThirdPartyCookies {
    display: grid;
    gap: 20px;
    margin-top: 1.5rem;
}

.chpThirdPartyItem {
    background: var(--secondary-bg);
    padding: 20px;
    border-radius: 8px;
}

.chpThirdPartyItem h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--title-color);
}

@media (max-width: 768px) {
    .chpCookiesUsage {
        grid-template-columns: 1fr;
    }

    .chpCookiesOverview {
        padding: 25px;
    }
}


































@media (max-width: 992px) {

    .chpServicesGrid,
    .chpStatsGrid,
    .chpProcessGrid,
    .chpFooterContent {
        grid-template-columns: repeat(2, 1fr);
    }

    .chpAboutContent,
    .chpTestimonialsContent {
        grid-template-columns: 1fr;
    }

    .chpAboutImage {
        order: 2;
    }

    .chpAboutText {
        order: 1;
    }

    .chpBannerTitle {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .chpMobileToggle {
        display: block;
    }

    .chpNav {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        display: none;
    }

    .chpNav.active {
        right: 0;
        display: flex;
    }

    .chpNavList {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .chpNavItem {
        margin: 0 0 10px 0;
        width: 100%;
    }

    .chpNavLink {
        display: block;
        padding: 10px 0;
    }

    .chpOverlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        display: none;
    }

    .chpOverlay.active {
        display: block;
    }

    .chpServicesGrid,
    .chpStatsGrid,
    .chpProcessGrid,
    .chpFooterContent {
        grid-template-columns: 1fr;
    }

    .chpStatItem:not(:last-child):after {
        display: none;
    }

    .chpBannerTitle {
        font-size: 2rem;
    }

    .chpCtaTitle {
        font-size: 2rem;
    }
}

@media(max-width: 767px) {
    .chpTopLine {
        display: none;
    }

    .chpApproachVisual {
        height: auto;
    }

    .chpApproachContent {
        gap: 40px;
    }

    .chpHeader {
        top: 15px;
    }

    .chpBanner {
        padding: 160px 0 70px 0;
    }

    .chpTestimonialsContent {
        flex-direction: column;
        gap: 15px;
    }

    .chpTestimonialsSlider {
        width: 100%;
    }

    .chpFooterContent {
        gap: 24px;
    }

    .chpLogo {
        font-size: 22px;
    }

    .chpCookiePopup {
        left: 50%;
        transform: translate(-50%, 0);
        width: 98%;
    }
}