* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Hamburger Menu */
.hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 40px;
    height: 40px;
    background: rgba(44, 85, 48, 0.9);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-menu span {
    width: 20px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(44, 85, 48, 0.6);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.side-menu.active {
    right: 0;
}

.side-menu-header {
    padding: 2rem;
    background: #2c5530;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}


.side-nav-links {
    list-style: none;
    padding: 0;
}

.side-nav-links li {
    border-bottom: 1px solid #eee;
}

.side-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 4px solid transparent;
}

.side-nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #2c5530;
    border-left-color: white;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Page Header */
.page-header {
    height: 40vh;
    background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(44, 85, 48, 0.8)), 
                url('privacy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1rem;
}

.breadcrumb-list a {
    color: #2c5530;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #4a7c59;
}

.breadcrumb-list i {
    color: #666;
    font-size: 0.8rem;
}

/* Main Content */
main {
    padding: 3rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #2c5530;
}

.content-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

/* Table of Contents */
.toc-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.toc-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c5530;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
}

.toc-list a {
    display: block;
    padding: 0.8rem 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.toc-list a:hover {
    background: #f8f9fa;
    color: #2c5530;
    border-left-color: #2c5530;
    transform: translateX(5px);
}

/* Info Boxes */
.info-box {
    background: #e8f5e8;
    border: 1px solid #2c5530;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-box h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box i {
    color: #2c5530;
}

/* Church Info */
.church-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.church-info h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.church-info ul {
    list-style: none;
}

.church-info li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.church-info strong {
    min-width: 100px;
    color: #2c5530;
}

/* Purpose Grid */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.purpose-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.purpose-card:hover {
    transform: translateY(-5px);
    border-color: #2c5530;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.1);
}

.purpose-icon {
    width: 80px;
    height: 80px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.purpose-card h4 {
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.purpose-card ul {
    list-style: none;
    text-align: left;
}

.purpose-card li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.purpose-card li::before {
    content: "?";
    color: #2c5530;
    position: absolute;
    left: 0;
}

/* Collection Method */
.collection-method {
    background: #e8f5e8;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.collection-method h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.collection-method ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    list-style: none;
}

.collection-method li {
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    text-align: center;
}

/* Items Grid */
.items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.items-card {
    border-radius: 15px;
    padding: 2rem;
}

.items-card.required {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
}

.items-card.optional {
    background: #f8f9fa;
    border: 2px solid #2c5530;
}

.items-card h4 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.items-category {
    margin-bottom: 1.5rem;
}

.items-category h5 {
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.items-card.optional .items-category h5 {
    border-bottom-color: #ddd;
    color: #2c5530;
}

.items-category ul {
    list-style: none;
}

.items-category li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.items-category li::before {
    content: "?";
    position: absolute;
    left: 0;
}

.items-card.required .items-category li::before {
    color: rgba(255, 255, 255, 0.7);
}

.items-card.optional .items-category li::before {
    color: #2c5530;
}

/* Sensitive Info */
.sensitive-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.sensitive-info h4 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sensitive-info ul {
    margin: 1rem 0;
}

.sensitive-info li {
    margin: 0.5rem 0;
}

.sensitive-info .note {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Retention Table */
.retention-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.retention-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.retention-table th {
    background: #2c5530;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.retention-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.retention-table tr:hover {
    background: #f8f9fa;
}

.retention-note {
    background: #e8f5e8;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.retention-note h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Destruction Process */
.destruction-process {
    margin-bottom: 3rem;
}

.destruction-process h4 {
    color: #2c5530;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2c5530;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h5 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Destruction Methods */
.destruction-methods h4 {
    color: #2c5530;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.method-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: #2c5530;
    transform: translateY(-5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.method-card h5 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.method-card ul {
    list-style: none;
    text-align: left;
}

.method-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.method-card li::before {
    content: "?";
    color: #2c5530;
    position: absolute;
    left: 0;
}

/* Third Party Provision */
.no-provision {
    text-align: center;
    padding: 2rem;
    background: #e8f5e8;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.icon-large {
    width: 100px;
    height: 100px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 3rem;
}

.no-provision h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.exception-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.case-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-icon {
    width: 60px;
    height: 60px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.case-card h5 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.cooperation-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.cooperation-info h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cooperation-info ul {
    margin: 1rem 0;
}

.cooperation-info li {
    margin: 0.8rem 0;
}

.cooperation-info .note {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Outsourcing */
.outsourcing-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.outsourcing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.outsourcing-table th {
    background: #2c5530;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.outsourcing-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.outsourcing-table tr:hover {
    background: #f8f9fa;
}

.outsourcing-management h4 {
    color: #2c5530;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.management-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.management-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.management-item i {
    width: 50px;
    height: 50px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.management-item h5 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.management-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.right-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.right-card:hover {
    transform: translateY(-5px);
    border-color: #2c5530;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.1);
}

.right-icon {
    width: 70px;
    height: 70px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.right-card h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.right-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Exercise Method */
.exercise-method h4 {
    color: #2c5530;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: #e8f5e8;
    transform: translateY(-3px);
}

.contact-card i {
    width: 50px;
    height: 50px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card h5 {
    color: #2c5530;
    margin-bottom: 0.3rem;
}

.contact-card p {
    color: #666;
    font-size: 0.9rem;
}

.rights-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.rights-note h4 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rights-note ul {
    margin: 1rem 0;
}

.rights-note li {
    margin: 0.5rem 0;
}

/* Security Measures */
.security-measures {
    margin-top: 2rem;
}

.measure-category {
    margin-bottom: 3rem;
}

.measure-category h4 {
    color: #2c5530;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.measure-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.measure-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.measure-item:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.measure-item i {
    width: 50px;
    height: 50px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.measure-item h5 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.measure-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Officer Cards */
.officer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.officer-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.officer-card:hover {
    transform: translateY(-5px);
}

.officer-card.main {
    border: 3px solid #2c5530;
}

.officer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.officer-icon {
    width: 60px;
    height: 60px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.officer-header h4 {
    color: #2c5530;
}

.officer-info {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    font-weight: 600;
    color: #2c5530;
    min-width: 80px;
}

.info-item .value {
    color: #333;
}

/* External Agencies */
.external-agencies {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.external-agencies h4 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.agency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.agency-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.agency-card:hover {
    transform: translateY(-3px);
}

.agency-card h5 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.agency-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.agency-contact div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.agency-contact i {
    color: #2c5530;
}

/* Version History */
.version-history {
    margin: 2rem 0;
}

.version-history h4 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.history-table {
    overflow-x: auto;
}

.history-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.history-table th {
    background: #2c5530;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.history-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.history-table tr:hover {
    background: #f8f9fa;
}

/* Notice Methods */
.notice-methods {
    margin: 2rem 0;
}

.notice-methods h4 {
    color: #2c5530;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.notice-item:hover {
    background: #e8f5e8;
    transform: translateY(-3px);
}

.notice-item i {
    width: 50px;
    height: 50px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notice-item h5 {
    color: #2c5530;
    margin-bottom: 0.3rem;
}

.notice-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Current Version */
.current-version {
    margin-top: 2rem;
    text-align: center;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #2c5530;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.3);
}

.version-badge i {
    font-size: 2rem;
}

.version-badge h5 {
    margin-bottom: 0.3rem;
}

.version-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    margin: 4rem 0;
}

.contact-section .contact-card {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.contact-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-grid .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-info-grid .contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-info-grid .contact-item i {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-info-grid .contact-item strong {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-grid .contact-item span {
    opacity: 0.9;
    text-align: center;
}

/* Footer */
footer {
    background: #2c5530;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-menu {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .purpose-grid {
        grid-template-columns: 1fr;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .officer-cards {
        grid-template-columns: 1fr;
    }
    
    .agency-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .retention-table,
    .outsourcing-table,
    .history-table {
        font-size: 0.9rem;
    }
    
    .retention-table th,
    .retention-table td,
    .outsourcing-table th,
    .outsourcing-table td,
    .history-table th,
    .history-table td {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 30vh;
    }
    
    .page-header-content h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .purpose-card,
    .right-card,
    .case-card {
        padding: 1.5rem;
    }
    
    .contact-section .contact-card {
        padding: 2rem;
    }
    
    .contact-section h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .version-badge {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .management-item,
    .measure-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #2c5530;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hamburger-menu,
    .side-menu,
    .menu-overlay {
        display: none;
    }
    
    .page-header {
        height: auto;
        padding: 2rem 0;
        background: #2c5530 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .content-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .contact-section .contact-card {
        background: #2c5530 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
