/* Privacy Policy Specific Styles */

/* Hero Section */
.privacy-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/use_hed.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.privacy-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 80%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.privacy-hero-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.4;
    color: white;
    text-align: center;
    max-width: 1127px;
    width: 100%;
}

/* Content Section */
.privacy-content {
    background-color: #f0ece3;
    padding: 152px 0 30px 0;
}

.privacy-introduction {
    margin-bottom: 64px;
    text-align: left;
}

.privacy-introduction p {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #333333;
}

.privacy-article {
    max-width: 928px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 32px;
}

.section-heading {
    font-family: 'Zen Old Mincho', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 16px;
}

.privacy-section p {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #333333;
    margin-bottom: 16px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    margin: 16px 0;
    padding-left: 24px;
}

.privacy-list li {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #333333;
    margin-bottom: 8px;
    list-style: disc;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}



/* Footer adjustments for privacy page */
.footer-links .active {
    color: #DC3545;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .privacy-content .container {
        padding: 0 32px;
    }
}

@media (max-width: 767px) {
    .privacy-hero {
        height: 250px;
    }
    
    .privacy-hero-title {
        font-size: 36px;
        padding: 0 24px;
    }
    
    .privacy-content {
        padding: 80px 0;
    }
    
    .privacy-introduction {
        margin-bottom: 48px;
    }
    
    .section-heading {
        font-size: 18px;
    }
    
    .privacy-section p,
    .privacy-list li {
        font-size: 15px;
    }
    
    .privacy-article {
        max-width: 100%;
    }
    
    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
	 .privacy-hero {
    height: 250px;
  }
	  .privacy-content .container {
    padding: 0 24px;
  }
    .privacy-hero-title {
        font-size: 24px;
    }
    
    .section-heading {
        font-size: 16px;
    }
    
    .privacy-section p,
    .privacy-list li {
        font-size: 14px;
        letter-spacing: 1.4px;
    }
    
    .contact-info {
        padding: 16px;
    }
	.privacy-hero-background {
    background-image: url(../images/use_hed-sp.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
}

/* Content Section */
.content-section {
    background-color: #f0ece3;
    padding: 152px 0 30px 0;
}

.content-container {
    max-width: 1184px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* Terms Table */
.terms-table {
    width: 100%;
    max-width: 928px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.table-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid silver;
    position: relative;
}

.label-cell {
    flex: 0 0 230px;
    max-width: 230px;
    padding: 24px 5px;
    box-sizing: border-box;
}

.content-cell {
    flex: 1;
    min-width: 0;
    padding: 24px 5px;
    box-sizing: border-box;
}

.label-cell p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #333333;
    margin: 0;
    white-space: nowrap;
}

.content-cell p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #333333;
    margin: 0;
    white-space: pre-line;
}

.underline {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
}
@media (max-width: 480px) {
.content-container {
    padding: 0 24px;
}
	.table-row {
  flex-direction: column;
}
	.label-cell {
  flex: 0 0 0px;
  max-width: 230px;
  padding: 24px 5px 0px 5px;
  box-sizing: border-box;
}
	.content-section {
  background-color: #f0ece3;
  padding: 60px 0 30px 0;
}
}