/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Single Column for Privacy Page */
.content-wrapper.single-column {
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto;
}

/* Left Content */
.left-content {
    padding-right: 20px;
}

.logo {
    width: 200px;
    margin-bottom: 30px;
}

.logo-placeholder {
    width: 250px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
    color: #f4a621;
}

/* Typography */
h1 {
    font-size: 32px;
    color: #dbb20b;
    margin-bottom: 20px;
    font-weight: bold;
}

h2 {
    font-size: 24px;
    color: #1b4332;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

h3 {
    font-size: 18px;
    color: #2d6a4f;
    margin-top: 20px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.description {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.8;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.8;
}

/* Features */
.features-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.features-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
    text-align: justify;
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #1b4332;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    /* biar bullet tidak naik-turun */
}

/* Table of Contents */
.toc {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #dbb20b;
}

.toc h3 {
    color: #1b4332;
    margin-bottom: 15px;
    margin-top: 0;
}

.toc ol {
    margin-left: 20px;
}

.toc li {
    margin: 10px 0;
}

.toc a {
    color: #2d6a4f;
    text-decoration: none;
}

.toc a:hover {
    color: #dbb20b;
    text-decoration: underline;
}

/* Download Section */
.download-section {
    margin-top: 40px;
}

.download-badge {
    display: inline-block;
}

.download-badge img {
    height: 50px;
    cursor: pointer;
    transition: transform 0.2s;
}

.download-badge img:hover {
    transform: scale(1.05);
}

.company-info {
    margin-top: 20px;
    font-size: 14px;
}

.company-info strong {
    color: #dbb20b;
}

.contact-info {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2;
}

.contact-info a {
    color: #dbb20b;
    text-decoration: none;
}

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

/* Right Content - Phone Mockup */
.right-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 240px;
}

.phone-mockup {
    max-width: 320px;
    width: 100%;
}

/* Back Button */
.back-button {
    display: inline-block;
    background: #dbb20b;
    color: #1b4332;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: transform 0.2s;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(219, 178, 11, 0.3);
}

/* Links */
a {
    color: #dbb20b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 13px;
    color: #666;
}

footer a {
    color: #dbb20b;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 15px;
    color: #999;
}

/* Responsive */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }

    .right-content {
        position: relative;
        top: 0;
        margin-top: 0;
    }

    .phone-mockup {
        max-width: 280px;
    }

    h1 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .content-wrapper {
        padding: 20px;
    }

    h1 {
        font-size: 22px;
    }

    .phone-mockup {
        max-width: 240px;
    }
}