/* ==========================================================================
   LEGAL & INFO PAGES STYLES (Concise & Clean)
   ========================================================================== */

/* Page Wrapper - Constraints width and centers content */
.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    /* Top padding accounts for fixed header */
    min-height: 80vh;
    /* Ensures footer doesn't float too high on empty pages */
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

.page-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

/* Content Sections */
.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

/* Text Content */
p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

ul,
ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    color: #444;
}

/* Info Cards (About Us / Features) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 4px 4px 0 #000;
    transition: transform 0.2s ease;
}

.info-card:hover {
    transform: translateY(-2px);
}

.card-icon {
    font-size: 24px;
    background: #000;
    color: #b9ff66;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    background: #b9ff66;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #000;
}

/* Forms */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.submit-btn {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Highlight Box (Cancellation Policy) */
.highlight-box {
    background: #f0fff0;
    border: 2px solid #b9ff66;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}