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

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

/* Hero Image at Top */
.hero-image {
    width: 100vw;
    max-height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 550px;
}

/* Content Wrapper */
.content-wrapper {
    background: #fff;
}

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

/* Header Section */
.header-section {
    background: #fff;
    color: #000;
    padding: 40px 20px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
    width: 100%;
    display: block;
}

.header-section h1 {
    color: #000;
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center !important;
    width: 100%;
    display: block;
}

.header-section h2 {
    color: #000;
    font-size: 2.0rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center !important;
    width: 100%;
    display: block;
}

.header-section h3 {
    color: #666;
    font-size: 1.5rem;
    margin-top: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center !important;
    width: 100%;
    display: block;
}

h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 400;
    margin-top: 1.5rem;
}

h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 400;
}

h3 {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

h4 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #000;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: justify;
    color: #333;
}

/* Lists */
ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #333;
}

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

a:hover {
    text-decoration: underline;
}


/* Sections */
.section {
    margin-bottom: 2.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: #fff;
}

table td {
    padding: 10px 15px;
    border: 1px solid #ddd;
    vertical-align: top;
}

table td:first-child {
    white-space: nowrap;
    font-weight: normal;
    width: 180px;
}

table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

/* Form Styling */
.form-info {
    background: #f5f5f5;
    padding: 1.5rem;
    border-left: 4px solid #0066cc;
    margin-bottom: 2rem;
}

.form-info ul {
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-container {
    background: #fff;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.form-note {
    background: #fffbea;
    border: 1px solid #e6d68a;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

footer p {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

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

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    table {
        font-size: 0.9rem;
    }

    table td {
        padding: 8px 10px;
    }

    table td:first-child {
        width: 120px;
        font-size: 0.85rem;
    }

    .hero-image {
        max-height: 250px;
    }

    .hero-image img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.3rem;
    }

    table {
        font-size: 0.85rem;
    }

    table td:first-child {
        width: 100px;
    }
}

/* Print Styles */
@media print {
    .hero-image {
        max-height: 300px;
    }

    .form-container,
    .form-note {
        display: none;
    }
}
