/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', Helvetica, sans-serif;
    background-color: #f1f7f3;
    color: #19331f;
    line-height: 1.6;
}

/* Container and layout */
.container {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 56px 40px 32px 40px;
}

.content-wrapper {
    background-color: #f1f7f3;
    width: 100%;
    max-width: 1230px;
    position: relative;
    display: flex;
    gap: 60px;
}

/* Header styles */
.header {}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    width: 294px;
}

.group-img {
    width: 98px;
    height: 24px;
    border-radius: 4px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #19331f;
    margin-bottom: 32px;
    transition: background-color 0.2s ease;
}

.back-button:hover {
    background-color: rgba(25, 51, 31, 0.05);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    color: #19331f;
}

/* Main content */
.main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.privacy-section {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Typography */
.main-title {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 34px;
    font-weight: 500;
    color: #19331f;
    line-height: 1.15;
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #19331f;
    line-height: 1.15;
    margin: 24px 0;
}

.subsection-title {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #19331f;
    line-height: 1.25;
    margin: 24px 0;
}

.sub-subsection-title {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #19331f;
    line-height: 1.25;
    margin: 24px 0;
}

.version-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.version-text {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #19331f;
    line-height: 1.25;
}

.intro-text {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #19331f;
    line-height: 1.25;
    margin-bottom: 24px;
}

.body-text {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #19331f;
    line-height: 1.25;
    margin-bottom: 24px;
}

/* Table styles */
.table-container {
    width: 100%;
    margin: 24px 0 48px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
}

.table-header {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #19331f;
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    background-color: transparent;
}

.table-cell {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #19331f;
    padding: 16px;
    vertical-align: top;
    border-bottom: 1px solid #e5e7eb;
    line-height: 1.4;
}

.table-cell.data-type {
    width: 180px;
}

/* .table-cell:first-child {
    width: 160px;
} */

/* Analytics lists */
.analytics-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-left: 20px;
}

.analytics-item {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 18px;
    color: #19331f;
    line-height: 1.25;
}

.opt-out-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-left: 20px;
}

.opt-out-item {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #19331f;
    line-height: 1.25;
}

/* Links */
.link {
    color: #15be4d;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.link:hover {
    color: #12a043;
}

/* Separator */
.separator {
    width: 100%;
    height: 1px;
    background-color: #e5e7eb;
    margin: 48px 0;
}

strong {
    font-weight: 600;
}

/* Copyright and company info */
.copyright {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #19331f;
    line-height: 1.25;
    margin-bottom: 24px;
}

.company-info {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #19331f;
    line-height: 1.25;
    margin-bottom: 48px;
}

/* Bottom back button */
.back-button-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #19331f;
    padding: 8px 0;
    transition: opacity 0.2s ease;
}

.back-button-bottom:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    margin: 48px auto 0 auto;
    max-width: 1230px;
}

.footer-text {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #19331f;
    line-height: 1.15;
}

.footer-link {
    font-family: 'Outfit', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #19331f;
    text-decoration: underline;
    line-height: 1.15;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
    }

    .header {
        display: flex;
        justify-content: center;
    }

}

@media (max-width: 1024px) {
    .table-container {
        overflow: auto;
    }
    .data-table {
        min-width: 1200px;
    }
    .content-wrapper {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    
    .main-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .footer {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .logo {
        width: 210px;
    }
    .container {
        padding: 32px 20px 20px 20px;
    }
}

@media (max-width: 480px) {

    .main-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .subsection-title,
    .sub-subsection-title,
    .version-text,
    .intro-text,
    .body-text,
    .analytics-item,
    .opt-out-item,
    .copyright,
    .company-info {
        font-size: 16px;
    }
    
    .table-header,
    .table-cell {
        font-size: 14px;
        padding: 12px 8px;
    }
    
    .back-button,
    .back-button-bottom {
        font-size: 16px;
        gap: 12px;
    }
    
    .arrow-icon {
        width: 20px;
        height: 20px;
    }

    .full-width {
        width: 100% !important;
        min-width: auto;
    }
}