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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #172131;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.site-header {
    background-color: #fff;
    padding: 20px 0;
}

.site-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #172131;
    letter-spacing: 0.5px;
}

/* Hero */
.hero {
    background-color: #eeeeee;
    padding: 100px 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 180px;
}

.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-content p {
    font-size: 20px;
    font-weight: 500;
    color: #172131;
    line-height: 1.4;
    margin-bottom: 45px;
}

.hero-content p.tertiary-content {
    font-weight: 300;
    margin-bottom: 0;
}

.hero-content a {
    color: #172131;
    text-decoration: underline;
}

.hero-content a:hover {
    color: #172131;
}

.hero-logo {
    flex-shrink: 0;
    align-self: flex-start;
}

.logo-container {
    width: 135px;
    height: 135px;
    background-color: #172131;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.logo {
    width: 100%;
    height: auto;
}

/* Cards Section */
.cards-section {
    background-color: #172131;
    padding: 100px 0 150px 0;
    flex: 1;
}

.cards-section .container {
    max-width: 1200px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
}

.card {
    background-color: transparent;
    display: block;
}

.card-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.card-link:hover {
    opacity: 1;
}

.card-link:hover h2 {
    text-decoration: underline;
}

.card-header {
    padding: 16px 0;
}

.card-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.card-header p {
    font-size: 16px;
    color: #999;
}

.card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #d9d9d9;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Card */
.card-form {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.card-form form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #bababa;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 6px;
    font-size: 20px;
    border: 1px solid #bbb;
    background-color: #eee;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
    height: 140px;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.submit-button {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #006d09;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: auto;
}

.submit-button:hover {
    outline: 2px solid #ffffff;
}

.submit-button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.form-status {
    margin-top: 12px;
    padding: 12px;
    text-align: center;
    font-size: 14px;
}

.form-status.success {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.form-status.error {
    background-color: #ffebee;
    color: #c62828;
}

/* Page Content */
.page-content {
    background-color: #f5f5f5;
    padding: 80px 0;
    flex: 1;
}

.page-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 24px;
}

.page-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}

.page-content .meta {
    font-size: 14px;
    font-style: italic;
    color: #777;
    margin-bottom: 32px;
}

.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-top: 32px;
    margin-bottom: 12px;
}

.page-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.page-content a {
    color: #007bd4;
    text-decoration: underline;
}

.page-content a:hover {
    color: #004c82;
}

.page-content em {
    font-style: italic;
}

.page-content strong {
    font-weight: 600;
    color: #172131;
}

/* Footer */
.site-footer {
    background-color: #fff;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-content p {
    font-size: 14px;
    font-weight: 600;
    color: #172131;
}

.footer-content p span {
    font-size: 14px;
    font-weight: 400;
    margin-left: 8px
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {
    color: #172131;
    text-decoration: none;
    font-size: 14px;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 56px;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 50px;
    }

    .hero-inner {
        flex-direction: column-reverse;
        padding: 0 120px;
    }

    .hero-logo {
        align-self: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .site-header h1 {
        text-align: center;
    }

    .hero-inner {
        padding: 0 50px;
        text-align: center;
    }
}
