/* Information Pages Styles */

/* Hero Section */
.information-hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.information-hero.cookie{
    background-image: url('../images/cookie-hero.webp');
}

.information-hero.privacy{
    background-image: url('../images/privacy-hero.webp');
}

.information-hero.terms{
    background-image: url('../images/terms-hero.webp');
    background-position: top center;
}

.information-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.information-hero .container {
    position: relative;
    z-index: 2;
}

.information-hero h1 {
    font-family: 'Jost', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.information-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Brand Styling */
.brand {
    font-weight: 700;
}

/* Content Section */
.information-content {
    background-color: #fafafa;
}

/* Document Container */
.information-document {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Sections */
.information-section {
    line-height: 1.8;
}

.information-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ciotolandia-orange);
}

.information-subheading {
    font-size: 1.35rem;
    font-weight: 600;
    color: #444;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--ciotolandia-green);
}

.information-subsection {
    margin-bottom: 2rem;
}

.information-section p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

.information-section .lead {
    font-size: 1.2rem;
    color: #666;
}

.information-section a {
    color: var(--ciotolandia-orange);
    transition: color 0.3s ease;
}

.information-section a:hover {
    color: var(--ciotolandia-green);
}

/* information Tables */
.information-table-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.table-responsive {
    margin-bottom: 2rem;
}

.information-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.information-table thead {
    background-color: #f8f9fa;
}

.information-table thead th {
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid var(--ciotolandia-orange);
}

.information-table tbody td {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.information-table tbody tr:last-child td {
    border-bottom: none;
}

.information-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Footer Section */
.information-footer {
    background-color: #f5f5f5;
}

.information-footer h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.information-footer p {
    color: #666;
}