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

/* Base Styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
                 Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: #f4f6f8;
    color: #1f2933;
    line-height: 1.6;
    padding: 40px 20px;
}

/* Main Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact {
    font-size: 14px;
    color: #4b5563;
}

.contact a {
    color: #2563eb;
    text-decoration: none;
}

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

/* Section Titles */
section {
    margin-bottom: 35px;
}

section h2 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 6px;
    margin-bottom: 15px;
    color: #111827;
}

/* Subtitles */
section h3 {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #1f2937;
}

/* Paragraph spacing */
p {
    margin-bottom: 8px;
}

/* Lists */
ul {
    padding-left: 20px;
    margin-top: 5px;
}

li {
    margin-bottom: 6px;
    font-size: 14px;
}

/* Emphasis */
em {
    font-size: 13px;
    color: #6b7280;
}

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

    header h1 {
        font-size: 26px;
    }
}
