@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

body {
    background: #eef1f5;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.privacy-container {
    max-width: 900px;
    margin: 40px auto;
}

.privacy-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.privacy-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.privacy-logo {
    width: 60px;
    height: auto;
    flex-shrink: 0;
}

.privacy-text {
    display: flex;
    flex-direction: column;
}

.privacy-title {
    margin: 0;
    font-weight: 600;
}

.privacy-subtitle {
    margin: 3px 0 0;
    color: #777 !important;
    font-size: 14px;
}

.intro-section {
    overflow: hidden;
    margin-bottom: 20px;
}

.intro-image {
    float: left;
    width: 200px;
    margin: 0 15px 10px 0;
}

.intro-section::after {
    content: "";
    display: block;
    clear: both;
}

.intro-text {
    line-height: 1.7;
    text-align: justify;
}

.section-title {
    margin-top: 25px;
    font-weight: 600;
}

.contact-card {
    margin-top: 20px;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #337ab7;
    border-radius: 6px;
    background: #fafafa;
    padding: 15px;
}

.contact-header {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-header .glyphicon {
    margin-right: 8px;
    color: #337ab7;
}

.contact-body p {
    margin: 6px 0;
    color: #555;
    line-height: 1.6;
}

.contact-body .glyphicon {
    width: 18px;
    color: #888;
}

.contact-email a {
    color: #337ab7;
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.privacy-box p {
    line-height: 1.7;
    color: #444;
}

.accept-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.accept-content {
    max-width: 900px;
    margin: auto;
    padding: 12px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.accept-label {
    /* color: #555; */
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-accept {
    min-width: 150px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
}

.btn-accept:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

hr {
    margin: 20px 0;
}

/* mobile */
@media (max-width: 576px) {
    .accept-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-accept {
        width: 100%;
    }

    .intro-image {
        float: none;
        display: block;
        margin: 0 auto 15px auto;
        width: 150px;
    }

    .intro-text {
        text-align: center; /* optional */
    }
}