/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f7f5e8; /* Warm parchment */
    color: #2c3e2c; /* Soft dark green/brown */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* Container */
.container {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

/* Privacy Page Specific Container Override */
.container-privacy {
    max-width: 600px;
    text-align: left;
}

/* Typography */
h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a261a;
    letter-spacing: -0.02em;
}

.container-privacy h1 {
    text-align: center;
}

h2 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #4a5d4a;
    font-style: italic;
}

/* Privacy h2 overrides */
.container-privacy h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-style: normal;
}

p {
    margin-bottom: 1.5rem;
}

/* Privacy Lists */
.container-privacy ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.container-privacy li {
    margin-bottom: 0.5rem;
}

/* Header Section */
header {
    margin-bottom: 3rem;
}

.container-privacy header {
    text-align: center;
}

header img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 20px rgba(44, 62, 44, 0.08);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #7c9a7c; /* Soft green */
    color: #f7f5e8;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease, transform 0.1s ease;
    margin-bottom: 1rem;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-small {
    background-color: transparent;
    border: 1px solid #7c9a7c;
    color: #5a705a;
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-small:hover {
    background-color: rgba(124, 154, 124, 0.1);
}

/* Sections */
section {
    margin-bottom: 4rem;
}

.download-section {
    margin-bottom: 3rem;
}

.box {
    background: rgba(255, 255, 255, 0.4);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 1px solid rgba(44, 62, 44, 0.05);
}

.container-privacy .box {
    margin-bottom: 2rem;
}

.about-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

.about-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    list-style-type: none; /* Ensure no default bullet */
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7c9a7c;
}

/* Footer / Privacy / Contact on Index */
.privacy-footer {
    font-size: 0.85rem;
    color: #5a705a;
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact {
    font-size: 0.9rem;
    color: #2c3e2c;
}

.contact a {
    color: #2c3e2c;
    text-decoration: underline;
    text-decoration-color: rgba(44, 62, 44, 0.3);
    text-underline-offset: 3px;
}

.contact a:hover {
    color: #1a261a;
    text-decoration-color: rgba(44, 62, 44, 0.8);
}

/* Privacy Page Specific Links */
.container-privacy a {
    color: #7c9a7c;
    text-decoration: none;
    border-bottom: 1px solid rgba(124, 154, 124, 0.3);
    transition: all 0.2s;
}

.container-privacy a:hover {
    color: #5a705a;
    border-bottom-color: #5a705a;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #5a705a;
    border-bottom: none !important; /* Override standard link underline */
}

.back-link:hover {
    color: #1a261a;
}

.last-updated {
    text-align: center;
    font-size: 0.85rem;
    color: #8c9e8c;
    margin-top: 4rem;
}

/* Utilities */
.spacer {
    height: 20px;
}
