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

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

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.verified-badge {
    width: 85px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.search-container {
    flex: 0 0 auto;
}

.search-box {
    background: #4a7dd8;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    width: 280px;
    color: white;
    font-size: 14px;
}

.search-box::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 125, 216, 0.2);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.content-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Logo Section */
.logo-section-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Search Section */
.search-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.search-heading {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.search-form {
    width: 100%;
    max-width: 500px;
}

.search-input-group {
    position: relative;
    display: flex;
}

.search-input-group input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-input-group input:focus {
    outline: none;
    border-color: #4a7dd8;
    box-shadow: 0 0 0 3px rgba(74, 125, 216, 0.1);
}

.search-input-group::before {
    content: '🔍';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.5;
}

/* Footer */
.footer {
    background: #001f3f;
    padding: 30px 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
}

.powered-badge img {
    width: 75px;
    height: 45px;
    object-fit: contain;
}

.powered-link {
    color: #4a7dd8;
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .header-container, .powered-by {
        flex-direction: column;
        width: 100%;
    }

    .content-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .logo-wrapper {
        height: 100px;
    }
}