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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    width: 100%;
    margin: 2rem auto;
    flex: 1;
    overflow: visible; /* Allow header card to overflow */
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Header Card Styles */
.header-card {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 3rem;
}

.header-card-content {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 10%;
    position: relative;
    background-color: #003d6b;
}

.header-card-text {
    color: white;
    z-index: 2;
    max-width: 50%;
}

.header-card-label {
    font-size: 0.875rem;
    font-weight: 300;
    text-transform: lowercase;
    opacity: 0.9;
}

.header-card-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0.5rem 0 1.5rem;
    line-height: 1.2;
}

.header-card-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 300;
}

.header-card-image-placeholder {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="400" height="400" fill="url(%23pattern)"/></svg>');
    opacity: 0.1;
}

/* Onboarding Card */
.onboarding-card {
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    padding: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.onboarding-icon {
    position: relative;
    flex-shrink: 0;
}

.icon-plus {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.icon-plus svg {
    stroke: #00a8a8;
    stroke-width: 2;
}

.onboarding-content {
    flex: 1;
}

.onboarding-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.onboarding-description {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.onboarding-cta {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-card-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .header-card-text {
        max-width: 100%;
    }
    
    .header-card-title {
        font-size: 2rem;
    }
    
    .header-card-image-placeholder {
        display: none;
    }
    
    .onboarding-card {
        flex-direction: column;
        padding: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .onboarding-description br,
    .onboarding-cta br {
        display: none;
    }
}

.color-palette {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.color-swatch {
    width: 150px;
    height: 150px;
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.color-swatch:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.color-info {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* Corporate Colors */
.color-1 {
    background-color: #003d6b;
}

.color-2 {
    background-color: #8cc63f;
}

.color-3 {
    background-color: #00a8a8;
}

.color-4 {
    background-color: #6b6b6b;
}

.color-5 {
    background-color: #b8bcc3;
}

.color-6 {
    background-color: #1a1a1a;
}

@media (max-width: 768px) {
    .color-swatch {
        width: 120px;
        height: 120px;
    }

    .container {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* Button Styles */
.button-section {
    margin-bottom: 3rem;
}

.button-section h2 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Base Button Styles */
.btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.75rem; /* Increased padding for pill shape */
    border: none;
    border-radius: 2rem; /* Much more rounded - pill shape */
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.5;
}

.btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Primary Button - Dark Blue */
.btn-primary {
    background-color: #003d6b;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background-color: #002d51;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Secondary Button - Lime Green */
.btn-secondary {
    background-color: #8cc63f;
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    background-color: #7ab635;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Tertiary Button - Orange */
.btn-tertiary {
    background-color: #ff9800;
    color: white;
}

.btn-tertiary:hover:not(:disabled) {
    background-color: #e68900;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-tertiary:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Level 4 Button - Dark Gray */
.btn-level4 {
    background-color: #6b6b6b;
    color: white;
}

.btn-level4:hover:not(:disabled) {
    background-color: #5a5a5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-level4:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Level 5 Button - Teal */
.btn-level5 {
    background-color: #00a8a8;
    color: white;
}

.btn-level5:hover:not(:disabled) {
    background-color: #008f8f;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-level5:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Sizes */
.btn-sm {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
}

.btn-lg {
    font-size: 1rem;
    padding: 1rem 2.25rem;
}

/* Outline Buttons */
.btn-outline-primary {
    background-color: transparent;
    color: #003d6b;
    border: 2px solid #003d6b;
}

.btn-outline-primary:hover:not(:disabled) {
    background-color: #003d6b;
    color: white;
}

.btn-outline-secondary {
    background-color: transparent;
    color: #8cc63f;
    border: 2px solid #8cc63f;
}

.btn-outline-secondary:hover:not(:disabled) {
    background-color: #8cc63f;
    color: white;
}

.btn-outline-tertiary {
    background-color: transparent;
    color: #ff9800;
    border: 2px solid #ff9800;
}

.btn-outline-tertiary:hover:not(:disabled) {
    background-color: #ff9800;
    color: white;
}

.btn-outline-level4 {
    background-color: transparent;
    color: #6b6b6b;
    border: 2px solid #6b6b6b;
}

.btn-outline-level4:hover:not(:disabled) {
    background-color: #6b6b6b;
    color: white;
}

.btn-outline-level5 {
    background-color: transparent;
    color: #00a8a8;
    border: 2px solid #00a8a8;
}

.btn-outline-level5:hover:not(:disabled) {
    background-color: #00a8a8;
    color: white;
}

/* Dropdown Button */
.btn-dropdown {
    position: relative;
    padding-right: 2.5rem;
}

.dropdown-arrow {
    font-size: 0.625rem;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .button-group {
        justify-content: center;
    }
}

/* List Table Styles */
.table-container {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.table-header {
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Search Section */
.search-section {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
    font-size: 0.8125rem;
    width: 220px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #00a8a8;
}

.search-button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: #666;
}

.search-button svg {
    width: 16px;
    height: 16px;
}

/* Table Actions */
.table-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-filter,
.btn-action {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 2rem;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.btn-filter:hover,
.btn-action:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.filter-icon {
    font-size: 0.5rem;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background-color: #f8f9fa;
}

.data-table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.8125rem;
    color: #666;
    border-bottom: 1px solid #e5e5e5;
}

.data-table td {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.data-table tbody tr {
    transition: background-color 0.2s ease;
}

.data-table tbody tr:hover {
    background-color: #f8f9fa;
}

.checkbox-col {
    width: 35px;
    text-align: center;
    padding: 0.625rem 0.5rem;
}

.actions-col {
    width: 50px;
    text-align: center;
}

.table-checkbox {
    cursor: pointer;
    width: 14px;
    height: 14px;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1;
}

.status-active {
    background-color: #8cc63f;
    color: white;
}

.status-inactive {
    background-color: #dc3545;
    color: white;
}

.status-pending {
    background-color: #6b6b6b;
    color: white;
}

/* Action Button */
.btn-icon {
    background: none;
    border: none;
    font-size: 1.125rem;
    color: #666;
    cursor: pointer;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
}

.btn-icon:hover {
    background-color: #e5e5e5;
}

/* Table Footer */
.table-footer {
    padding: 1rem;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e5e5e5;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 0.375rem;
    align-items: center;
}

.pagination-btn {
    min-width: 1.75rem;
    height: 1.75rem;
    padding: 0.25rem 0.375rem;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.pagination-btn.active {
    background-color: #003d6b;
    color: white;
    border-color: #003d6b;
}

@media (max-width: 768px) {
    .table-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-section {
        width: 100%;
    }
    
    .search-input {
        width: 100%;
    }
    
    .table-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .data-table {
        font-size: 0.75rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Header Styles */
.header-section {
    margin-bottom: 3rem;
}

.header-section h2 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.site-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-left {
    flex-shrink: 0;
}

.header-logo {
    height: 40px;
    width: auto;
}

/* Navigation */
.header-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00a8a8;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #00a8a8;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-button {
    background: none;
    border: none;
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.user-button:hover {
    color: #00a8a8;
}

.dropdown-chevron {
    font-size: 0.75rem;
    color: #666;
    display: inline-block;
    transition: transform 0.3s ease;
}

.user-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.dropdown-item:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #00a8a8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        padding: 1rem;
    }
    
    .header-nav {
        order: 3;
        width: 100%;
        justify-content: space-around;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e5e5;
    }
    
    .header-right {
        margin-left: auto;
    }
    
    .user-button {
        font-size: 0.8125rem;
    }
    
    .header-logo {
        height: 32px;
    }
    
    .dropdown-menu {
        right: -1rem;
    }
}

/* Data Cards Styles */
.cards-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.card-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.data-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e5e5;
}

/* Form Styles */
.card-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-third {
    flex: 0 0 calc(33.333% - 1rem);
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 0.375rem;
}

.form-input {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
    background-color: #f8f9fa;
}

.form-input:focus {
    outline: none;
    border-color: #00a8a8;
    background-color: white;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Card Content */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Document Item */
.document-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.document-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
}

.document-link {
    font-size: 0.8125rem;
    color: #0066cc;
    text-decoration: none;
    word-break: break-all;
}

.document-link:hover {
    text-decoration: underline;
}

/* Role Definitions */
.role-definition {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #333;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.role-definition:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.role-definition strong {
    color: #000;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .cards-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-wrap: wrap;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .form-group-third {
        flex: 1;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* Data Card Output Styles */
.output-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.output-card-header {
    height: 120px;
    background: linear-gradient(135deg, #003d6b 0%, #0066cc 100%);
    position: relative;
}

.header-image {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V120H1200V0Z" fill="url(%23grad1)" opacity="0.5"/><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:white;stop-opacity:0.1" /><stop offset="100%" style="stop-color:white;stop-opacity:0" /></linearGradient></defs></svg>');
    background-size: cover;
    background-position: center;
}

.output-card-body {
    padding: 2rem;
}

.output-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.output-section {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-row {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

.detail-label {
    color: #333;
}

.mt-2 {
    margin-top: 1rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.team-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.team-row {
    font-size: 0.875rem;
    line-height: 1.4;
}

.team-label {
    font-weight: 500;
    color: #333;
}

.team-value {
    color: #666;
}

.contact-btn {
    align-self: flex-start;
}

/* Responsive */
@media (max-width: 768px) {
    .output-card-header {
        height: 80px;
    }
    
    .output-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .output-card-body {
        padding: 1.5rem;
    }
    
    .company-name {
        font-size: 1.25rem;
    }
    
    .contact-btn {
        width: 100%;
    }
}

/* Quick Access Tools Styles */
.quick-access-panel {
    background-color: #e8f3f7;
    border-radius: 0.75rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.panel-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Make last row center aligned */
.tools-grid > .tool-item:nth-child(4),
.tools-grid > .tool-item:nth-child(5) {
    grid-column: span 1;
}

.tools-grid > .tool-item:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-left: 50%;
}

.tools-grid > .tool-item:nth-child(5) {
    grid-column-start: 2;
    grid-column-end: 3;
    margin-right: 50%;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.tool-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon svg {
    width: 60px;
    height: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .quick-access-panel {
        padding: 1.5rem;
    }
    
    .panel-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
    
    .tools-grid > .tool-item:nth-child(4),
    .tools-grid > .tool-item:nth-child(5) {
        margin: 0;
    }
    
    .tool-icon {
        width: 60px;
        height: 60px;
    }
    
    .tool-icon svg {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #1e3a5f; /* Dark blue from screenshot */
    color: white;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 4rem;
}

/* Footer Left Section */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-icon {
    width: 100px;
    height: auto;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Middle Section */
.footer-middle h3 {
    color: #00a8a8; /* Teal color */
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-middle address {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-middle p {
    margin: 0.5rem 0;
    font-size: 0.875rem;
}

.footer-middle a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-middle a:hover {
    color: #00a8a8;
}

.contact-us-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #00a8a8 !important;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* Footer Right Section */
.footer-right h3 {
    color: #00a8a8;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-nav-left,
.footer-nav-right {
    list-style: none;
    padding: 0;
}

.footer-nav-left li,
.footer-nav-right li {
    margin-bottom: 0.75rem;
}

.footer-nav-left a,
.footer-nav-right a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-nav-left a:hover,
.footer-nav-right a:hover {
    color: #00a8a8;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #00a8a8;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8cc63f;
}

.linkedin-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.linkedin-link span {
    background-color: #0077b5;
    color: white;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-nav-columns {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}