/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700&family=Space+Grotesk:wght@400;600;700&display=swap');

* {
    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: #333;
    background: linear-gradient(135deg, #2C3E32 0%, #3A4F3A 50%, #4A5F4A 100%);
    min-height: 100vh;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}
header {
    background: rgba(102, 125, 102, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(102, 125, 102, 0.3);
}
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; /* Increased size */
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #8FA98F, #7A9B7A, #6B8E6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(102, 125, 102, 0.3);
}
.subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    opacity: 0.9;
    color: #D8E4D8;
}
.content-card {
    background: rgba(216, 228, 216, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 125, 102, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Added transition */
}
.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}
h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2C3E32;
    margin-bottom: 1.5rem;
    font-size: 1.75rem; /* Increased size */
    border-bottom: 2px solid rgba(139, 169, 139, 0.3);
    padding-bottom: 0.5rem;
    font-weight: 700; /* Increased weight */
}
h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #3A4F3A;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem; /* Increased size */
    font-weight: 700; /* Increased weight */
}
p {
    margin-bottom: 1.5rem;
    text-align: justify;
}
ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}
li {
    margin-bottom: 0.5rem;
}
.highlight-box {
    background: rgba(216, 228, 216, 0.9);
    border-left: 4px solid #6B8E6B;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 125, 102, 0.2);
}
.highlight-box h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2C3E32;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}
.highlight-box p {
    color: #333;
}
.back-link {
    display: inline-block;
    background: linear-gradient(135deg, #2C3E32 0%, #4A5F4A 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 50, 0.3);
}
.back-link:hover {
    background: linear-gradient(135deg, #3A4F3A 0%, #5A6F5A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 50, 0.4);
}
.security-notice {
    background: rgba(216, 228, 216, 0.85);
    border: 1px solid #6B8E6B;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}
.security-notice h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2C3E32;
    margin-bottom: 1rem;
    font-weight: 700;
}
.security-notice p {
    color: #333;
}
footer {
    background: rgba(44, 62, 50, 0.9);
    color: #D8E4D8;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(102, 125, 102, 0.3);
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
}
th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background: #f5f5f5;
    font-weight: 600;
    color: #333;
}
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    .content-card {
        padding: 2rem;
    }
    h1 {
        font-size: 2.5rem; /* Adjusted for mobile */
    }
    table {
        font-size: 0.9rem;
    }
}