* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
}

body {
    background: #f8fafc;
    color: #0f172a;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 30px 20px;
}


/* Header */

.header {
    background: #223B7B;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.company-name {
    font-size: 28px;
    font-weight: 600;
}

.logo {
    max-height: 120px;
}


/* Company Info */

.company-info {
    margin-top: -40px;
}

.info-card {
    background: white;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.info-card h2 {
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-grid span {
    font-size: 13px;
    color: #64748b;
}

.info-grid p {
    font-weight: 500;
    margin-top: 4px;
}


/* Reports */

.reports {
    margin-top: 60px;
	display: none;
}

.reports h2 {
    margin-bottom: 30px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.report-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.report-card h3 {
    margin-bottom: 8px;
}

.actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a {
    text-decoration: none;
    color: #223B7B;
    font-weight: 500;
}

.primary {
    background: #223B7B;
    color: white !important;
    padding: 8px 14px;
    border-radius: 6px;
}


/* Footer */

footer {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
    margin-top: 60px;
    font-size: 14px;
}