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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #EBF2F5;
    color: #0A1F68;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header Section */
.header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
    min-height: 180px;
}

/* Decorative Elements */
.decorative-lemon {
    display: none;
}

.decorative-lemon::after {
    display: none;
}

.decorative-leaf {
    display: none;
}

.decorative-dots {
    display: none;
}

.dot {
    display: none;
}

.logo {
    font-size: 72px;
    font-weight: 900;
    color: #3d7fb8;
    margin: 30px 0 10px 0;
    letter-spacing: -2px;
    position: relative;
    z-index: 10;
}

.subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #0A1F68;
    margin-top: 10px;
    position: relative;
    z-index: 10;
}

/* Main Content */
.content {
    background-color: transparent;
    padding: 40px;
    border-radius: 12px;
    box-shadow: none;
}

.last-updated {
    font-size: 14px;
    color: #0A1F68;
    margin-bottom: 30px;
    font-weight: 500;
}

.intro {
    font-size: 16px;
    color: #0A1F68;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0A1F68;
    margin-bottom: 12px;
    margin-top: 0;
}

.policy-section p {
    font-size: 15px;
    color: #0A1F68;
    line-height: 1.7;
    text-align: justify;
}

/* Contact List */
.contact-list {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

.contact-list li {
    font-size: 15px;
    color: #0A1F68;
    margin-left: 20px;
    margin-bottom: 8px;
}

.contact-list li::before {
    content: '•';
    margin-right: 10px;
    color: #0A1F68;
    font-weight: bold;
}

/* Summary Box */
.summary {
    margin-top: 50px;
    padding: 25px;
    background-color: transparent;
    border-left: 4px solid #0A1F68;
    border-radius: 4px;
    font-size: 16px;
    color: #0A1F68;
    line-height: 1.6;
}

.header-image {
    width: 180px;
    height: 180px;
    margin-bottom: -30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .header {
        min-height: 100px;
        margin-bottom: 40px;
    }

    .logo {
        font-size: 48px;
    }

    .subtitle {
        font-size: 24px;
    }

    .content {
        padding: 25px;
    }

    .policy-section p {
        text-align: left;
    }
}
