/* Hero section specific to info pages */
.info-hero-section {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 1.5rem;
    background: var(--color-light-gray);
    color: var(--color-dark);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.info-hero-section h1 {
    font-size: 3rem; /* Smaller than the default 4.2rem */
}

.info-hero-section p {
    font-size: 1.5rem; /* Smaller than the default 1.8rem */
}

.info-hero-section h2 {
    font-size: 2.5rem; /* Smaller than the default 3.2rem */
}

/* Content section for info pages */
.info-content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Section title with icon */
.info-section-title {
    color: var(--color-primary); 
    font-size: 2rem; 
    font-weight: 600; 
    margin-bottom: 1rem; 
    padding-bottom: 0.5rem; 
    border-bottom: 2px solid var(--color-secondary); 
    display: flex; 
    align-items: center;
}

.info-section-title i {
    margin-right: 15px;
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* Contact form wrapper specific to o_nas page - renamed to avoid collision */
.info-contact-wrapper {
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

/* Collapsible sections for GDPR and Terms */
.collapsible-header {
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-secondary);
    text-align: left;
    position: relative;
}

.collapsible-header i {
    margin-right: 15px;
    color: var(--color-primary);
    font-size: 2rem;
}

.collapsible-header::after {
    content: '+';
    font-size: 1.5rem;
    margin-left: auto;
}

.collapsible-header.active::after {
    content: '−';
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.collapsible-content.active {
    max-height: 2000px;
}

/* Better solution for numbered sections */
.collapsible-content p {
    padding-left: 0; /* Reset any padding */
    position: relative; /* For positioning the number */
    max-width: 100%; /* Ensure content doesn't overflow */
}

/* Style for paragraphs with numbered sections */
.collapsible-content p strong:first-child {
    display: inline-block;
    width: auto; /* Let the width be determined by the content */
    min-width: 2.5em; /* Provide space for "10.3" */
    float: left; /* Float the number to the left */
    margin-right: 0.5em; /* Space between number and content */
}

/* Make sure text after the number doesn't wrap around it */
.collapsible-content p:after {
    content: "";
    display: table;
    clear: both;
}

.expand-all-container {
    text-align: right;
    margin-bottom: 2rem;
}

.expand-all-button {
    display: inline-block;
    background-color: white;
    color: var(--color-primary);
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.expand-all-button:hover {
    background-color: var(--color-primary);
    color: white;
}

/* List styles for info pages */
.bullet-list {
    list-style-type: disc !important;
    padding-left: 25px;
    margin: 15px 0;
}

.bullet-list .bullet-list {
    list-style-type: circle !important;
}

/* Style for bullet lists in collapsible content */
.collapsible-content .bullet-list {
    margin-left: 3em; /* Consistent with the numbered sections */
}

.letter-list {
    list-style-type: lower-alpha;
    padding-left: 25px;
    margin: 15px 0;
}

.number-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin: 10px 0 20px 20px;
}

.letter-list > li,
.number-list > li,
.bullet-list > li {
    margin-bottom: 10px;
}

/* Additional styles for info pages */
.terms-section {
    margin-bottom: 2.5rem;
}

.first-paragraph {
    margin-bottom: 2.5rem;
}

.important-note {
    background-color: var(--color-light);
    padding: 1rem;
    border-left: 4px solid var(--color-primary);
    margin-bottom: 1.5rem;
}

.effective-date {
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* External links */
a[target="_blank"]:after {
    content: " \f08e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8em;
    vertical-align: super;
    opacity: 0.7;
}

/* Print button */
.print-container {
    margin-top: 1rem;
    text-align: center;
}

.print-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.print-button i {
    margin-right: 0.5rem;
}

.print-button:hover {
    background-color: var(--color-secondary);
}

/* Info breadcrumb specific style */
.info-breadcrumb {
    margin-top: var(--header-height);
}