@font-face {
  font-family: 'Kotta One';
  src: url('../fonts/KottaOne-Regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Karla';
  src: url('../fonts/Karla-Light.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Karla';
  src: url('../fonts/Karla-Medium.ttf') format('ttf');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Kotta One';
  src: url('../fonts/Karla-Regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Karla';
  src: url('../fonts/Karla-Bold.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Karla';
  src: url('../fonts/Karla-ExtraBold.ttf') format('ttf');
  font-weight: 700;
  font-style: normal;
}
:root {
    --primary-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FFB347 100%);
    --secondary-gradient: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --overlay-dark: rgba(0, 0, 0, 0.8);
    --overlay-light: rgba(255, 255, 255, 0.8);
    --accent-color: #FF4757;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
        --privacy-primary: #6C63FF;
    --privacy-secondary: #4D44DB;
    --privacy-accent: #FF6584;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #F8F9FA;
        --cookie-primary: #FF7D7D;
    --cookie-secondary: #FF5757;
    --cookie-accent: #FFBD59;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #FFF5F5;
        --terms-primary: #4D96FF;
    --terms-secondary: #3D6CB9;
    --terms-accent: #6BCB77;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #F5F9FF;
}

body {
    font-family: 'Karla', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.hnp-header_wrapper {
    background: var(--primary-gradient);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.hnp-header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.hnp-header_logo-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hnp-header_brand-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.hnp-header_brand-name {
    font-family: 'Kotta One', serif;
    font-size: 1.5rem;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hnp-header_navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s ease;
}

.hnp-header_navigation.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--primary-gradient);
    z-index: 999;
    padding: 2rem;
    overflow-y: auto;
}

.hnp-header_nav-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.hnp-header_nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    position: relative;
}

.hnp-header_nav-link:hover {
    transform: translateY(-2px);
}

.hnp-header_nav-link i {
    font-size: 1.2rem;
}

.hnp-header_contact-btn {
    background: var(--text-light);
    color: var(--accent-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.hnp-header_contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.hnp-header_mobile-menu {
    display: none;
}

.hnp-header_burger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.hnp-header_burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

.hnp-premium_section {
    min-height: 100vh;
    background: url('../hnp-img/hnp-bg-img-1.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    margin-top: 70px;
}

.hnp-premium_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.hnp-premium_content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    text-align: center;
    margin: 0 auto;
    padding: 2rem;
}

.hnp-premium_title {
    font-family: 'Kotta One', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hnp-premium_text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hnp-premium_text i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.hnp-premium_features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hnp-premium_feature-card {
    background: var(--overlay-light);
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 180px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.hnp-premium_feature-card:hover {
    transform: translateY(-10px);
    background: var(--text-light);
}

.hnp-premium_feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.hnp-premium_feature-card p {
    font-weight: 700;
    font-size: 1.1rem;
}

.hnp-about_section {
    padding: 6rem 2rem;
    margin: 0 auto;
}

.hnp-about_content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.hnp-about_text-block {
    flex: 1;
    padding: 3rem 0;
    align-self: flex-start;
}

.hnp-about_image-block {
    flex: 1;
    align-self: flex-end;
    position: relative;
}

.hnp-about_image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hnp-about_image-block img:hover {
    transform: rotate(-2deg) scale(1.02);
}

.hnp-about_title {
    font-family: 'Kotta One', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    position: relative;
}

.hnp-about_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
}

.hnp-about_description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hnp-welcome_section {
    min-height: 70vh;
    background: url('../hnp-img/hnp-bg-img-3.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.hnp-welcome_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.hnp-welcome_content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    text-align: center;
    margin: 0 auto;
    padding: 2rem;
}

.hnp-welcome_title {
    font-family: 'Kotta One', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.hnp-welcome_text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.hnp-welcome_text i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hnp-benefits_section {
    padding: 6rem 2rem;
    margin: 0 auto;
    text-align: center;
}

.hnp-benefits_title {
    font-family: 'Kotta One', serif;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hnp-benefits_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-gradient);
}

.hnp-benefits_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.hnp-benefits_card {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    width: calc(33.333% - 2rem);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hnp-benefits_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.hnp-benefits_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
}

.hnp-benefits_card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.hnp-benefits_card h3 {
    font-family: 'Kotta One', serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hnp-benefits_card p {
    color: #666;
    font-size: 1rem;
}

.hnp-reviews_section {
    padding: 6rem 2rem;
    margin: 0 auto;
    background: #f9f9f9;
}

.hnp-reviews_title {
    font-family: 'Kotta One', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--accent-color);
}

.hnp-reviews_container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.hnp-reviews_card {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    width: calc(50% - 1rem);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hnp-reviews_card:hover {
    transform: scale(1.02);
}

.hnp-reviews_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hnp-reviews_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.hnp-reviews_meta {
    flex: 1;
}

.hnp-reviews_meta h3 {
    font-family: 'Kotta One', serif;
    margin-bottom: 0.5rem;
}

.hnp-reviews_stars {
    color: #FFD700;
}

.hnp-reviews_text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hnp-reviews_date {
    display: block;
    text-align: right;
    color: #888;
    font-size: 0.9rem;
}

.hnp-faq_section {
    min-height: 100vh;
    background: url('../hnp-img/hnp-bg-img-2.jpg') center/cover no-repeat;
    position: relative;
    padding: 6rem 2rem;
}

.hnp-faq_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.hnp-faq_content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    margin: 0 auto;
}

.hnp-faq_title {
    font-family: 'Kotta One', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.hnp-faq_container {
    max-width: 800px;
    margin: 0 auto;
}

.hnp-faq_item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.hnp-faq_question {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text-light);
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.hnp-faq_question:hover {
    background: rgba(255,255,255,0.2);
}

.hnp-faq_question i {
    transition: var(--transition);
}

.hnp-faq_question.active i {
    transform: rotate(45deg);
}

.hnp-faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(0,0,0,0.3);
}

.hnp-faq_answer p {
    padding: 0 1.5rem 1.5rem;
    margin-top: 2rem;
}

.hnp-faq_contact-btn {
    display: block;
    margin: 3rem auto 0;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.hnp-faq_contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hnp-footer_wrapper {
    background: var(--secondary-gradient);
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
}

.hnp-footer_container {
    margin: 0 auto;
}

.hnp-footer_links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hnp-footer_link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.hnp-footer_link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.hnp-footer_contact-btn {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.hnp-footer_contact-btn:hover {
    background: var(--text-light);
    color: var(--accent-color);
}

.hnp-footer_info {
    text-align: center;
    margin-top: 2rem;
}

.hnp-footer_logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.hnp-footer_copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hnp-cookies_notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 1rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.hnp-cookies_notice.active {
    transform: translateY(0);
}

.hnp-cookies_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1464px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.hnp-cookies_text {
    flex: 1;
    min-width: 300px;
}

.hnp-cookies_link {
    color: var(--accent-color);
    text-decoration: none;
    margin-left: 0.5rem;
}

.hnp-cookies_link:hover {
    text-decoration: underline;
}

.hnp-cookies_accept {
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.hnp-cookies_accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hnp-modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.hnp-modal_overlay.active {
    opacity: 1;
    visibility: visible;
}

.hnp-modal_container {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.hnp-modal_overlay.active .hnp-modal_container {
    transform: translateY(0);
}

.hnp-modal_close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
    transition: var(--transition);
}

.hnp-modal_close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.hnp-modal_title {
    font-family: 'Kotta One', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-align: center;
}

.hnp-modal_form-group {
    margin-bottom: 1.5rem;
}

.hnp-modal_label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hnp-modal_contactinput, .hnp-modal_contacttextarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Karla', sans-serif;
    transition: var(--transition);
}

.hnp-modal_contactinput:focus, .hnp-modal_contacttextarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,71,87,0.2);
}

.hnp-modal_contacttextarea {
    min-height: 150px;
    resize: vertical;
}

.hnp-modal_error {
    display: block;
    color: #ff4757;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    min-height: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hnp-modal_error.show {
    opacity: 1;
}

.hnp-modal_form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.hnp-modal_hint {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.3rem;
    min-height: 1rem;
}

.hnp-modal_checkbox-group {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.hnp-modal_checkinput {
    margin-right: 0.5rem;
}

.hnp-modal_checklabel {
    font-size: 0.9rem;
}

.hnp-modal_submit {
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}

.hnp-modal_submit:hover {
    background: #FF3347;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,71,87,0.3);
}

.hnp-success_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.hnp-success_content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    position: relative;
    animation: slideUp 0.4s ease;
}

.hnp-success_close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #888;
}

.hnp-success_content h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Kotta One', serif;
}

.hnp-success_content p {
    margin-bottom: 1.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@media (max-width: 1024px) {
    .hnp-premium_title {
        font-size: 3rem;
    }
    
    .hnp-benefits_card {
        width: calc(50% - 1rem);
    }
    
    .hnp-reviews_card {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .hnp-header_mobile-menu {
        display: none;
    }
    .hnp-header_navigation {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .hnp-header_navigation {
        display: none;
    }

    .hnp-header_nav-list {
        flex-direction: column;
    }
    
    .hnp-header_mobile-menu {
        display: block;
    }
    
    .hnp-header_container {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hnp-header_logo-group {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hnp-header_mobile-menu {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .hnp-benefits_card {
        width: 100%;
    }
    
    .hnp-about_content {
        flex-direction: column;
    }
    
    .hnp-about_text-block {
        padding: 0;
    }
    
    .hnp-about_image-block {
        margin-top: 2rem;
    }
    
    .hnp-premium_features {
        flex-direction: column;
        align-items: center;
    }
    
    .hnp-premium_feature-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hnp-header_navigation.active {
        top: 70px;
        height: calc(100vh - 70px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hnp-premium_title {
        font-size: 2.2rem;
    }
    
    .hnp-premium_text {
        font-size: 1rem;
    }
    
    .hnp-about_title, .hnp-benefits_title, .hnp-reviews_title, .hnp-faq_title {
        font-size: 2rem;
    }
    
    .hnp-footer_links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hnp-modal_container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 320px) {
    .hnp-premium_title {
        font-size: 1.8rem;
    }
    
    .hnp-header_brand-name {
        font-size: 1.2rem;
    }
    
    .hnp-about_title, .hnp-benefits_title, .hnp-reviews_title, .hnp-faq_title {
        font-size: 1.6rem;
    }
    
    .hnp-cookies_content {
        flex-direction: column;
        text-align: center;
    }
    
    .hnp-cookies_accept {
        width: 100%;
    }
}

.hnppg-privacy_main {
    padding-top: 70px;
    background-color: var(--bg-light);
    min-height: 100vh;
}

.hnppg-privacy_intro {
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--privacy-primary), var(--privacy-secondary));
    color: var(--text-light);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
}

.hnppg-privacy_title {
    font-family: 'Kotta One', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hnppg-privacy_subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hnppg-privacy_content {
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.hnppg-privacy_item {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    width: calc(33.333% - 2rem);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hnppg-privacy_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.1);
}

.hnppg-privacy_item i {
    font-size: 2.5rem;
    color: var(--privacy-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.hnppg-privacy_item:hover i {
    transform: scale(1.2);
    color: var(--privacy-accent);
}

.hnppg-privacy_item-title {
    font-family: 'Kotta One', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--privacy-secondary);
}

.hnppg-privacy_item-text {
    font-family: 'Karla', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hnppg-privacy_item {
        width: calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .hnppg-privacy_title {
        font-size: 2.5rem;
    }
    
    .hnppg-privacy_item {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hnppg-privacy_main {
        padding-top: 130px;
    }

    .hnppg-privacy_title {
        font-size: 2rem;
    }
    
    .hnppg-privacy_subtitle {
        font-size: 1rem;
    }
    
    .hnppg-privacy_content {
        padding: 0 1rem;
    }
}

@media (max-width: 320px) {
    .hnppg-privacy_title {
        font-size: 1.8rem;
    }
    
    .hnppg-privacy_item {
        padding: 1.5rem;
    }
}

.hnppg-cookie_main {
    padding-top: 70px;
    background-color: var(--bg-light);
    min-height: 100vh;
}

.hnppg-cookie_intro {
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--cookie-primary), var(--cookie-secondary));
    color: var(--text-light);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(255, 125, 125, 0.2);
}

.hnppg-cookie_title {
    font-family: 'Kotta One', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounceIn 1s ease;
}

.hnppg-cookie_subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.hnppg-cookie_content {
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.hnppg-cookie_item {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    width: calc(33.333% - 2rem);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hnppg-cookie_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--cookie-primary);
    transition: all 0.3s ease;
}

.hnppg-cookie_item:hover::before {
    width: 10px;
    background: var(--cookie-accent);
}

.hnppg-cookie_item:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 15px 30px rgba(255, 125, 125, 0.1);
}

.hnppg-cookie_item i {
    font-size: 2.5rem;
    color: var(--cookie-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.hnppg-cookie_item:hover i {
    transform: rotate(15deg) scale(1.1);
    color: var(--cookie-accent);
}

.hnppg-cookie_item-title {
    font-family: 'Kotta One', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cookie-secondary);
}

.hnppg-cookie_item-text {
    font-family: 'Karla', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .hnppg-cookie_item {
        width: calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .hnppg-cookie_title {
        font-size: 2.5rem;
    }
    
    .hnppg-cookie_item {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hnppg-cookie_main {
        padding-top: 130px;
    }

    .hnppg-cookie_title {
        font-size: 2rem;
    }
    
    .hnppg-cookie_subtitle {
        font-size: 1rem;
    }
    
    .hnppg-cookie_content {
        padding: 0 1rem;
    }
}

@media (max-width: 320px) {
    .hnppg-cookie_title {
        font-size: 1.8rem;
    }
    
    .hnppg-cookie_item {
        padding: 1.5rem;
    }
}

.hnppg-terms_main {
    padding-top: 70px;
    background-color: var(--bg-light);
    min-height: 100vh;
}

.hnppg-terms_intro {
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--terms-primary), var(--terms-secondary));
    color: var(--text-light);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.2);
}

.hnppg-terms_title {
    font-family: 'Kotta One', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease;
}

.hnppg-terms_subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: slideInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.hnppg-terms_content {
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.hnppg-terms_item {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    width: calc(33.333% - 2rem);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hnppg-terms_item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(77, 150, 255, 0.1);
}

.hnppg-terms_item i {
    font-size: 2.5rem;
    color: var(--terms-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.hnppg-terms_item:hover i {
    color: var(--terms-accent);
    transform: rotateY(180deg);
}

.hnppg-terms_item-title {
    font-family: 'Kotta One', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--terms-secondary);
    position: relative;
}

.hnppg-terms_item-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--terms-primary);
    transition: all 0.3s ease;
}

.hnppg-terms_item:hover .hnppg-terms_item-title::after {
    width: 100%;
    background: var(--terms-accent);
}

.hnppg-terms_item-text {
    font-family: 'Karla', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .hnppg-terms_item {
        width: calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .hnppg-terms_title {
        font-size: 2.5rem;
    }
    
    .hnppg-terms_item {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hnppg-terms_main {
        padding-top: 130px;
    }

    .hnppg-terms_title {
        font-size: 2rem;
    }
    
    .hnppg-terms_subtitle {
        font-size: 1rem;
    }
    
    .hnppg-terms_content {
        padding: 0 1rem;
    }
}

@media (max-width: 320px) {
    .hnppg-terms_title {
        font-size: 1.8rem;
    }
    
    .hnppg-terms_item {
        padding: 1.5rem;
    }
}