:root {
    --primary-color: #127B5F;
    --primary-dark: #0e5e48;
    --text-color: #333333;
    --bg-color: #f4f7f6;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(at 0% 0%, hsla(164, 59%, 45%, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(164, 59%, 45%, 0.15) 0px, transparent 50%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow);
    animation: fadeIn 0.8s ease-out;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(18, 123, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(18, 123, 95, 0.2);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(18, 123, 95, 0.3);
}

.footer-links {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #888;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.7rem;
    color: #aaa;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 2rem 1.5rem;
    }
}

/* Styles for Policy Pages */
.container-wide {
    width: 90%;
    max-width: 900px;
    padding: 3rem;
    text-align: left;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.container-wide h1 {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.container-wide h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.container-wide p {
    margin-bottom: 1rem;
    text-align: justify;
}

.container-wide ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.container-wide li {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}