        :root {
        --primary-color: #7ab27a;
        --secondary-color: #a8cecb;
        --tertiary-color: #e7dfe8;
        --gradient-primary: linear-gradient(135deg, #7ab27a, #a8cecb);
        --gradient-subtle: radial-gradient(ellipse at top, rgba(122, 178, 122, 0.1), rgba(168, 206, 203, 0.05));
        --text-dark: #2c3e50;
        --text-light: #6c757d;
        --white: #ffffff;
        --shadow-elegant: 0 8px 32px rgba(122, 178, 122, 0.15);
        --shadow-soft: 0 4px 16px rgba(168, 206, 203, 0.12);
        }
        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }
        body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background: var(--gradient-subtle);
        overflow-x: hidden;
        }
        header {
        background: linear-gradient(135deg, var(--white) 0%, rgba(231, 223, 232, 0.3) 50%, rgba(168, 206, 203, 0.1) 100%);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(122, 178, 122, 0.1);
        position: relative;
        z-index: 100;
        }
        .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "logo . navigation";
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 1.5rem 2rem;
        gap: 2rem;
        min-height: 100px;
        }
        .logo-section {
        grid-area: logo;
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        z-index: 110;
        }
        .logo-section img {
        height: 50px;
        width: auto;
        filter: drop-shadow(0 2px 8px rgba(122, 178, 122, 0.2));
        }
        .brand-name {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 600;
        color: var(--primary-color);
        letter-spacing: -0.02em;
        text-shadow: 0 2px 4px rgba(122, 178, 122, 0.1);
        }
        .main-nav {
        grid-area: navigation;
        position: relative;
        z-index: 105;
        }
        .nav-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
        list-style: none;
        align-items: center;
        justify-items: end;
        }
        .nav-item a {
        display: block;
        padding: 0.75rem 1.25rem;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 0.95rem;
        letter-spacing: 0.025em;
        border-radius: 12px;
        background: rgba(231, 223, 232, 0.4);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(122, 178, 122, 0.15);
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        position: relative;
        overflow: hidden;
        }
        .nav-item a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        transition: left 0.2s ease;
        z-index: -1;
        }
        .nav-item a:hover {
        color: var(--white);
        border-color: var(--primary-color);
        box-shadow: var(--shadow-soft);
        }
        .nav-item a:hover::before {
        left: 0;
        }
        footer {
        background: linear-gradient(135deg, var(--text-dark) 0%, rgba(44, 62, 80, 0.95) 100%);
        color: var(--white);
        margin-top: 4rem;
        position: relative;
        overflow: hidden;
        }
        footer::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 140%;
        height: 200%;
        background: var(--gradient-primary);
        opacity: 0.05;
        transform: rotate(-12deg);
        z-index: 1;
        }
        .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 4rem 2rem 2rem;
        position: relative;
        z-index: 2;
        }
        .footer-grid {
        display: subgrid;
        grid-template-columns: subgrid;
        grid-template-rows: auto auto auto;
        gap: 3rem 2rem;
        }
        .footer-main {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
        }
        .footer-section {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        }
        .footer-section h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 0.5rem;
        letter-spacing: -0.01em;
        }
        .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        }
        .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(168, 206, 203, 0.1);
        }
        .contact-item:last-child {
        border-bottom: none;
        }
        .contact-label {
        font-weight: 500;
        color: var(--secondary-color);
        min-width: 80px;
        font-size: 0.9rem;
        }
        .contact-value {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        line-height: 1.4;
        }
        .contact-value a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
        }
        .contact-value a:hover {
        color: var(--secondary-color);
        }
        .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        }
        .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        padding: 0.5rem 0;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.2s ease;
        }
        .footer-links a:hover {
        color: var(--secondary-color);
        padding-left: 0.5rem;
        }
        .footer-bottom {
        border-top: 1px solid rgba(168, 206, 203, 0.15);
        padding-top: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        }
        .copyright {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        }
        .footer-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        }
        .footer-brand .brand-name {
        font-size: 1.25rem;
        color: var(--secondary-color);
        }
        .cookie-consent {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        max-width: 380px;
        background: var(--white);
        padding: 1.5rem;
        border-radius: 16px;
        box-shadow: var(--shadow-elegant);
        border: 1px solid rgba(122, 178, 122, 0.2);
        z-index: 1000;
        transform: translateY(100px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .cookie-consent.show {
        transform: translateY(0);
        opacity: 1;
        }
        .cookie-content p {
        font-size: 0.9rem;
        color: var(--text-dark);
        margin-bottom: 1rem;
        line-height: 1.5;
        }
        .cookie-buttons {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        }
        .cookie-btn {
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        flex: 1;
        min-width: 80px;
        }
        .cookie-accept {
        background: var(--gradient-primary);
        color: var(--white);
        }
        .cookie-accept:hover {
        box-shadow: var(--shadow-soft);
        }
        .cookie-decline {
        background: transparent;
        color: var(--text-light);
        border: 1px solid rgba(122, 178, 122, 0.3);
        }
        .cookie-decline:hover {
        background: rgba(122, 178, 122, 0.05);
        }
        @media (max-width: 1200px) {
        .header-container {
        grid-template-columns: 1fr;
        grid-template-areas:
        "logo"
        "navigation";
        text-align: center;
        gap: 1.5rem;
        }
        .nav-list {
        justify-items: center;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }
        }
        @media (max-width: 768px) {
        .header-container {
        padding: 1rem 1.5rem;
        }
        .nav-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        }
        .nav-item a {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        }
        .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        }
        .footer-container {
        padding: 3rem 1.5rem 2rem;
        }
        .footer-bottom {
        flex-direction: column;
        text-align: center;
        }
        .cookie-consent {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        }
        .cookie-buttons {
        justify-content: center;
        }
        }
        @media (max-width: 480px) {
        .nav-list {
        grid-template-columns: 1fr;
        }
        .brand-name {
        font-size: 1.5rem;
        }
        }
        .privacy-policy-page {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #2c3e50;
        background: linear-gradient(135deg, #7ab27a 0%, #a8cecb 100%);
        min-height: 100vh;
        padding: 0;
        margin: 0;
        }
        .privacy-policy-container {
        max-width: 1000px;
        width: 100%;
        margin: 0 auto;
        padding: 60px 40px;
        box-sizing: border-box;
        background: white;
        margin-top: 40px;
        margin-bottom: 40px;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(122, 178, 122, 0.15);
        }
        .privacy-header-section {
        text-align: center;
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 3px solid #e7dfe8;
        position: relative;
        }
        .privacy-main-title {
        font-size: 2.8rem;
        color: #7ab27a;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: -0.02em;
        }
        .privacy-subtitle {
        font-size: 1.2rem;
        color: #6c757d;
        margin-bottom: 20px;
        font-weight: 400;
        }
        .last-updated-info {
        background: linear-gradient(45deg, #e7dfe8, #a8cecb);
        padding: 15px 25px;
        border-radius: 8px;
        display: inline-block;
        font-size: 0.95rem;
        color: #495057;
        font-weight: 500;
        }
        .privacy-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
        }
        .privacy-section-block {
        background: #fafbfc;
        border-left: 5px solid #7ab27a;
        padding: 35px;
        border-radius: 12px;
        margin-bottom: 25px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        .privacy-section-block:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(122, 178, 122, 0.12);
        }
        .section-heading {
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 600;
        border-bottom: 2px solid #a8cecb;
        padding-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        }
        .section-heading::before {
        content: '';
        width: 12px;
        height: 12px;
        background: #7ab27a;
        border-radius: 50%;
        flex-shrink: 0;
        }
        .privacy-paragraph {
        font-size: 1.05rem;
        color: #495057;
        margin-bottom: 18px;
        line-height: 1.7;
        text-align: left;
        }
        .privacy-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
        }
        .privacy-list-item {
        padding: 12px 0;
        border-bottom: 1px solid #e9ecef;
        color: #495057;
        font-size: 1.05rem;
        position: relative;
        padding-left: 25px;
        }
        .privacy-list-item::before {
        content: '→';
        color: #7ab27a;
        font-weight: bold;
        position: absolute;
        left: 0;
        top: 12px;
        }
        .privacy-list-item:last-child {
        border-bottom: none;
        }
        .contact-info-block {
        background: linear-gradient(135deg, #7ab27a, #a8cecb);
        color: white;
        padding: 40px;
        border-radius: 15px;
        text-align: center;
        margin-top: 40px;
        box-shadow: 0 10px 30px rgba(122, 178, 122, 0.2);
        }
        .contact-info-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
        font-weight: 600;
        }
        .contact-details-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 25px;
        }
        .contact-detail-item {
        background: rgba(255, 255, 255, 0.15);
        padding: 20px;
        border-radius: 10px;
        backdrop-filter: blur(10px);
        }
        .contact-label {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
        }
        .contact-value {
        font-size: 1.1rem;
        font-weight: 600;
        }
        .important-notice {
        background: linear-gradient(45deg, #e7dfe8, rgba(168, 206, 203, 0.3));
        border: 2px solid #a8cecb;
        padding: 25px;
        border-radius: 12px;
        margin: 30px 0;
        position: relative;
        overflow: hidden;
        }
        .important-notice::before {
        content: '!';
        position: absolute;
        top: -10px;
        right: -10px;
        background: #7ab27a;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.4rem;
        }
        .notice-title {
        font-size: 1.3rem;
        color: #7ab27a;
        font-weight: 600;
        margin-bottom: 15px;
        }
        .data-types-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin: 25px 0;
        }
        .data-type-card {
        background: white;
        border: 2px solid #e7dfe8;
        border-radius: 12px;
        padding: 25px;
        transition: all 0.3s ease;
        }
        .data-type-card:hover {
        border-color: #a8cecb;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(122, 178, 122, 0.1);
        }
        .card-title {
        font-size: 1.2rem;
        color: #7ab27a;
        font-weight: 600;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        }
        .card-title::before {
        content: '◆';
        color: #a8cecb;
        }
        .rights-checklist {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
        margin: 25px 0;
        border: 1px solid #dee2e6;
        }
        .checklist-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
        padding: 10px;
        background: white;
        border-radius: 8px;
        transition: all 0.2s ease;
        }
        .checklist-item:hover {
        background: #e7dfe8;
        }
        .checklist-icon {
        width: 20px;
        height: 20px;
        background: #7ab27a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 0.8rem;
        flex-shrink: 0;
        margin-top: 2px;
        }
        .checklist-text {
        flex: 1;
        font-size: 1.05rem;
        color: #495057;
        line-height: 1.6;
        }
        @media (max-width: 768px) {
        .privacy-policy-container {
        margin: 20px auto;
        padding: 40px 25px;
        border-radius: 12px;
        }
        .privacy-main-title {
        font-size: 2.2rem;
        }
        .privacy-section-block {
        padding: 25px;
        margin-bottom: 20px;
        }
        .section-heading {
        font-size: 1.5rem;
        }
        .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        }
        .data-types-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        }
        .privacy-paragraph {
        font-size: 1rem;
        }
        .contact-info-block {
        padding: 30px 20px;
        }
        }
        @media (max-width: 480px) {
        .privacy-policy-container {
        padding: 30px 20px;
        margin: 10px;
        }
        .privacy-main-title {
        font-size: 1.9rem;
        }
        .privacy-section-block {
        padding: 20px;
        }
        .section-heading {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        }
        .checklist-item {
        flex-direction: column;
        gap: 10px;
        }
        .checklist-icon {
        align-self: flex-start;
        }
        }