/* Reset some default styles */
body{
    background-color: #f9f9fb;
}
#content, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
#content {
    font-family:'Hanken Grotesk', sans-serif;
    background-color: #f9f9fb;
    line-height: 1.6;
    padding: 2rem;
    max-width: 1140px;
    margin: auto;
}

/* Headings */
h1 {
    font-size: 2.5rem;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    font-weight: bold;
    color: #0337c3;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem !important;
    margin-bottom: 0.5rem !important;
    color: #0337c3;
}

h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem !important;
    margin-bottom: 0.5rem !important;
    color: #0337c3;
}

/* Paragraphs */
p {
    margin-bottom: 1rem !important;
    font-size:1.2rem;
}

/* Package list styling */
.package-list ul {
    list-style: none;
    padding-left: 0 !important;
}

.package-list li {
    background-color: #ffffff !important;
    border: 1px solid #ddd;
    margin-bottom: 0.5rem !important;
    padding: 0.75rem 1rem !important;
    border-radius: 6px !important;
    transition: background-color 0.2s ease !important;
    font-size:1.2rem;
}

.package-list li:hover {
    background-color: #eef6ff !important;
}

.package-list a {
    text-decoration: none;
    color: #0066cc;
    font-weight: 500;
}

.package-list a:hover {
    text-decoration: underline !important;
}

/* Caption styling */
caption {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    #content {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
    
    p, .package-list li {
        font-size: 1rem;
    }
    
}
