/* Privacy Policy Specific Styles */
.privacy-policy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(27, 67, 50, 0.08) 0%,
        rgba(45, 106, 79, 0.05) 50%,
        rgba(27, 67, 50, 0.08) 100%
    );
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.privacy-policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(27, 67, 50, 0.03) 0%,
        rgba(45, 106, 79, 0.02) 100%
    );
    z-index: 1;
}

.privacy-policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.privacy-policy-background {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 
        0 15px 35px rgba(27, 67, 50, 0.08),
        0 1px 3px rgba(27, 67, 50, 0.02),
        inset 0 0 0 1px rgba(27, 67, 50, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-policy-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(27, 67, 50, 0.02) 0%,
        rgba(45, 106, 79, 0.01) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.privacy-policy-background:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px rgba(27, 67, 50, 0.12),
        0 3px 5px rgba(27, 67, 50, 0.03),
        inset 0 0 0 1px rgba(27, 67, 50, 0.15);
}

.privacy-policy-background:hover::before {
    opacity: 1;
}

.privacy-policy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-policy-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(10px);
    background: linear-gradient(135deg, #1b4332, #2d6a4f, #1b4332);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: dramaticFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               gradientMove 3s ease infinite;
}

.privacy-policy-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.8;
}

.privacy-policy-content {
    position: relative;
    z-index: 1;
}

.privacy-policy-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.privacy-features {
    margin: 35px 0;
    padding: 25px;
    background: rgba(27, 67, 50, 0.03);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.privacy-features h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.elegant-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.elegant-list li {
    position: relative;
    padding-left: 25px;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.elegant-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.elegant-list li:hover {
    transform: translateX(3px);
    color: #2d6a4f;
}

.elegant-list li:hover::before {
    transform: translateY(-50%) scale(1.3);
    background: #2d6a4f;
    box-shadow: 0 0 8px rgba(45, 106, 79, 0.4);
}

.privacy-download-section {
    margin: 50px 0;
    text-align: center;
}

.download-card {
    background: linear-gradient(135deg,
        rgba(27, 67, 50, 0.05) 0%,
        rgba(221, 184, 146, 0.1) 100%
    );
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(221, 184, 146, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(221, 184, 146, 0.1) 50%,
        transparent 100%
    );
    animation: shimmer 3s infinite linear;
    pointer-events: none;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(221, 184, 146, 0.2);
    border-color: var(--accent-color);
}

.download-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.download-content h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.download-content p {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.download-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-color);
    background: var(--gold-gradient);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(221, 184, 146, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    cursor: pointer;
}

.download-button .button-text {
    position: relative;
    z-index: 3;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-button .button-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        transparent 100%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.download-button .button-border {
    position: absolute;
    inset: -2px;
    border: 2px solid transparent;
    border-radius: 50px;
    background: var(--gold-gradient);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.5s ease;
}

.download-button .button-scale {
    position: absolute;
    inset: 0;
    background: var(--green-gradient);
    border-radius: 50px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(221, 184, 146, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.15);
}

.download-button:hover .button-text {
    color: white;
}

.download-button:hover .button-shine {
    transform: translateX(100%) rotate(45deg);
}

.download-button:hover .button-border {
    opacity: 1;
}

.download-button:hover .button-scale {
    transform: scale(1);
    opacity: 1;
}

.privacy-contact {
    margin-top: 40px;
    padding: 25px;
    background: rgba(27, 67, 50, 0.03);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    text-align: center;
}

.privacy-contact h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    color: #2d6a4f;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: #2d6a4f;
    transform: scale(1.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(100%) skewX(-15deg);
    }
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    .privacy-policy-background {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .privacy-policy-container {
        padding: 0 15px;
    }

    .privacy-policy-title {
        font-size: 2rem;
    }

    .privacy-policy-subtitle {
        font-size: 1rem;
    }

    .elegant-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .download-card {
        padding: 25px;
    }

    .download-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .contact-item {
        font-size: 1rem;
    }
}

/* Refined Principles List */
.refined-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    background: rgba(27, 67, 50, 0.04);
    border-radius: 12px;
    padding: 18px 0 10px 0;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(27, 67, 50, 0.04);
}
.refined-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.08rem;
    font-weight: 500;
    color: #1b4332;
    background: none;
    padding: 0 10px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
}
.refined-list li i {
    color: #2d6a4f;
    font-size: 1.2em;
    margin-right: 0.2em;
    transition: color 0.2s;
}
.refined-list li:hover, .refined-list li:focus {
    background: rgba(27, 67, 50, 0.08);
    color: #2d6a4f;
}
.refined-list li:hover i, .refined-list li:focus i {
    color: #1b4332;
}

@media (max-width: 768px) {
    .refined-list {
        flex-direction: column;
        gap: 1rem;
        padding: 10px 0;
    }
}

/* Refined Contact Section */
.refined-contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 10px;
}
.refined-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.08rem;
    color: #1b4332;
    background: none;
    border-radius: 8px;
    padding: 6px 12px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.refined-contact-item i {
    color: #2d6a4f;
    font-size: 1.2em;
    transition: color 0.2s;
}
.refined-contact-item:hover, .refined-contact-item:focus {
    background: rgba(27, 67, 50, 0.08);
    color: #2d6a4f;
    text-decoration: none;
}
.refined-contact-item:hover i, .refined-contact-item:focus i {
    color: #1b4332;
}
.contact-label {
    display: block;
    font-size: 0.95em;
    color: #888;
    margin-bottom: 2px;
    font-weight: 400;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 0.4em;
    color: #1b4332;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-link:hover, .contact-link:focus {
    color: #2d6a4f;
    text-decoration: underline;
}
.contact-link i {
    color: #2d6a4f;
    font-size: 1.1em;
    transition: color 0.2s;
}
.contact-link:hover i, .contact-link:focus i {
    color: #1b4332;
}

@media (max-width: 768px) {
    .refined-contact-info {
        flex-direction: column;
        gap: 1rem;
    }
} 