:root {
    --navy: #0b1f3a;
    --navy-2: #102b4e;
    --blue: #1c6dd0;
    --gold: #c7a348;
    --white: #ffffff;
    --gray-50: #f7f9fc;
    --gray-100: #eef2f7;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1f2937;
    --shadow: 0 22px 60px rgba(11, 31, 58, 0.12);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.muted { background: var(--gray-50); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gray-100);
}
.navbar {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; max-width: 430px; }
.nav-logo-frame {
    width: 112px;
    height: 50px;
    flex: 0 0 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
}
.site-logo {
    width: 100%;
    height: 100%;
    max-width: 112px;
    max-height: 50px;
    object-fit: contain;
    display: block;
    transform: none;
}
.hero-logo {
    width: 100%;
    max-width: 420px;
    max-height: 230px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: var(--white);
    padding: 12px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
}
.brand strong { display: block; color: var(--navy); letter-spacing: -0.03em; }
.brand small { display: block; color: var(--gray-600); font-size: 0.78rem; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 0.95rem; font-weight: 600; }
.nav-links a { color: var(--gray-600); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--blue); }
.nav-toggle { display: none; border: 0; background: var(--navy); color: var(--white); border-radius: 10px; padding: 8px 11px; font-size: 1.2rem; }

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(28,109,208,0.38), transparent 30%),
        radial-gradient(circle at 12% 80%, rgba(199,163,72,0.24), transparent 28%),
        linear-gradient(135deg, #081a31 0%, #102b4e 58%, #0b1f3a 100%);
    color: var(--white);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: center; }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 800; color: var(--gold); }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: 0.98; letter-spacing: -0.07em; margin: 12px 0; max-width: 850px; }
.hero h2 { font-size: clamp(1.5rem, 4vw, 2.8rem); margin: 0 0 12px; color: #dcecff; letter-spacing: -0.04em; }
.hero-subtitle { font-size: clamp(1.1rem, 2.2vw, 1.45rem); color: #dbe8f7; max-width: 680px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 14px 30px rgba(199,163,72,0.25); }
.btn-outline { border-color: rgba(255,255,255,0.35); color: var(--white); background: rgba(255,255,255,0.08); }
.section .btn-outline, .contact-form .btn-outline { color: var(--navy); border-color: var(--gray-300); background: var(--white); }
.full-width { width: 100%; }
.hero-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.22);
    backdrop-filter: blur(18px);
}
.card-label { color: var(--gold); font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; }
.hero-card h3 { font-size: 1.8rem; line-height: 1.15; margin: 14px 0; }
.hero-card p { color: #dbe8f7; }
.mini-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 24px; }
.mini-stats span { border-radius: 16px; background: rgba(255,255,255,0.11); padding: 14px; }
.mini-stats strong { display: block; font-size: 1.5rem; color: var(--gold); }

.two-column, .form-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
h2 { color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -0.05em; margin: 8px 0 18px; }
.lead { font-size: 1.08rem; color: var(--gray-600); }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.section-heading p:not(.section-kicker) { color: var(--gray-600); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline article, .cards article, .topic-grid article, .registration-form, .contact-form, .info-box, .venue-box { border: 1px solid var(--gray-100); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.timeline article { padding: 24px; }
.timeline span { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 50%; background: #e9f2ff; color: var(--blue); font-weight: 800; }
.timeline h3 { color: var(--navy); margin-bottom: 8px; }
.timeline p { color: var(--gray-600); margin-bottom: 0; }
.cards { display: grid; gap: 18px; }
.topic-grid { grid-template-columns: repeat(4, 1fr); }
.topic-grid article { padding: 24px; min-height: 118px; display: flex; align-items: end; font-weight: 800; color: var(--navy); position: relative; overflow: hidden; }
.topic-grid article::before { content: ''; position: absolute; width: 72px; height: 72px; right: -20px; top: -20px; border-radius: 50%; background: rgba(28,109,208,0.1); }
.people-grid { grid-template-columns: repeat(4, 1fr); }
.people-grid article { padding: 24px; }
.people-grid h3 { margin: 0 0 8px; color: var(--navy); }
.people-grid p { color: var(--gray-600); margin: 0 0 14px; }
.people-grid span { color: var(--blue); font-weight: 800; font-size: 0.9rem; }
.form-intro { position: sticky; top: 100px; }
.info-box { padding: 18px; color: var(--gray-600); }
.registration-form, .contact-form { padding: 28px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    padding: 13px 14px;
    font: inherit;
    color: var(--gray-800);
    background: var(--white);
    outline: none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(28,109,208,0.12); }
.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.alert { border-radius: 14px; padding: 14px 16px; margin-bottom: 18px; font-weight: 700; }
.alert-success { background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }
.form-note { font-size: 0.9rem; color: var(--gray-600); text-align: center; }
.contact-list { color: var(--gray-600); }
.venue-box { padding: 30px; }
.map-placeholder { min-height: 280px; border: 1px dashed var(--gray-300); border-radius: var(--radius); background: linear-gradient(135deg, #f8fafc, #eef6ff); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: var(--gray-600); text-align: center; }
.map-placeholder strong { color: var(--navy); }
.footer { background: var(--navy); color: #dbe8f7; padding: 26px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.footer a { color: var(--gold); font-weight: 800; }

@media (max-width: 980px) {
    .nav-toggle { display: inline-flex; }
    .nav-links { position: absolute; top: 76px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; padding: 18px; background: var(--white); border: 1px solid var(--gray-100); border-radius: 16px; box-shadow: var(--shadow); }
    .nav-links.open { display: flex; }
    .hero-grid, .two-column, .form-layout { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding-top: 80px; }
    .timeline, .topic-grid, .people-grid { grid-template-columns: repeat(2, 1fr); }
    .form-intro { position: static; }
}
@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .hero-actions, .footer-grid { flex-direction: column; align-items: stretch; }
    .timeline, .topic-grid, .people-grid, .split { grid-template-columns: 1fr; }
    .hero-card { padding: 22px; }
    .registration-form, .contact-form { padding: 20px; }
}


/* Enhanced interactive academic design */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 10%, rgba(28,109,208,0.08), transparent 22%),
        radial-gradient(circle at 85% 30%, rgba(199,163,72,0.08), transparent 20%);
    z-index: -1;
}
.site-header.scrolled { box-shadow: 0 12px 35px rgba(11,31,58,0.12); }
#particle-canvas, .hero-video-layer, .hero-overlay, .hero-orb, .formula-cloud {
    position: absolute;
    inset: 0;
}
#particle-canvas { z-index: 1; opacity: 0.95; }
.hero-video-layer { z-index: 0; opacity: 0.18; overflow: hidden; }
.hero-video-layer video { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8) contrast(1.15); }
.hero-overlay { z-index: 2; background: linear-gradient(90deg, rgba(8,26,49,0.88), rgba(8,26,49,0.62), rgba(8,26,49,0.78)); }
.hero-grid { z-index: 4; }
.hero-orb { z-index: 3; pointer-events: none; filter: blur(2px); opacity: 0.5; }
.orb-one { width: 360px; height: 360px; border-radius: 999px; background: radial-gradient(circle, rgba(59,130,246,0.55), transparent 64%); left: 58%; top: 10%; animation: floatOrb 9s ease-in-out infinite; }
.orb-two { width: 260px; height: 260px; border-radius: 999px; background: radial-gradient(circle, rgba(199,163,72,0.44), transparent 66%); left: 8%; top: 62%; animation: floatOrb 11s ease-in-out infinite reverse; }
@keyframes floatOrb { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(24px,-28px,0) scale(1.08); } }
.formula-cloud { z-index: 3; pointer-events: none; }
.formula-cloud span {
    position: absolute;
    color: rgba(255,255,255,0.28);
    font-weight: 800;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.045);
    padding: 8px 12px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    animation: drift 12s ease-in-out infinite;
}
.formula-cloud span:nth-child(1){ left: 68%; top: 24%; }
.formula-cloud span:nth-child(2){ left: 74%; top: 62%; animation-delay: -2s; }
.formula-cloud span:nth-child(3){ left: 13%; top: 24%; animation-delay: -4s; }
.formula-cloud span:nth-child(4){ left: 43%; top: 76%; animation-delay: -6s; }
@keyframes drift { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-18px); } }
.hero-content h1, .hero-content h2, .hero-subtitle, .hero-actions, .eyebrow { animation: heroRise 0.8s ease both; }
.hero-content h2 { animation-delay: 0.08s; }
.hero-subtitle { animation-delay: 0.16s; }
.hero-actions { animation-delay: 0.24s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-card { transform-style: preserve-3d; transition: transform 0.25s ease, border-color 0.25s ease; }
.hero-card:hover { transform: perspective(900px) rotateX(2deg) rotateY(-4deg) translateY(-6px); border-color: rgba(199,163,72,0.45); }
.conference-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.conference-chip-row span { font-size: 0.82rem; padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,0.10); color: #e8f2ff; }
.topic-grid article { cursor: pointer; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; isolation: isolate; }
.topic-grid article span { position: absolute; top: 16px; left: 18px; color: var(--blue); opacity: 0.38; font-size: 1.7rem; font-weight: 900; }
.topic-grid article:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(11,31,58,0.16); border-color: rgba(28,109,208,0.28); }
.topic-grid article::after { content: attr(data-topic); position: absolute; inset: auto 14px 14px 14px; padding: 12px; border-radius: 14px; color: #dbe8f7; background: linear-gradient(135deg, rgba(11,31,58,0.95), rgba(28,109,208,0.92)); opacity: 0; transform: translateY(10px); transition: 0.22s ease; font-weight: 600; font-size: 0.84rem; line-height: 1.4; }
.topic-grid article:hover::after { opacity: 1; transform: translateY(0); }
.program-preview { margin-top: 22px; display: grid; gap: 10px; }
.program-preview div { display: flex; gap: 14px; align-items: center; padding: 14px 16px; border-radius: 16px; background: #fff; border: 1px solid var(--gray-100); box-shadow: 0 12px 26px rgba(11,31,58,0.07); }
.program-preview strong { color: var(--gold); min-width: 58px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.registration-form, .contact-form { position: relative; overflow: hidden; }
.registration-form::before, .contact-form::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--gold), var(--blue)); }
.map-placeholder { position: relative; overflow: hidden; }
.map-placeholder::after { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 999px; background: rgba(28,109,208,0.12); animation: pulseMap 3.4s ease-in-out infinite; }
@keyframes pulseMap { 0%,100% { transform: scale(0.8); opacity: 0.35; } 50% { transform: scale(1.25); opacity: 0.12; } }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@media (max-width: 640px) {
    .formula-cloud { display: none; }
    .hero-video-layer { opacity: 0.08; }
}

/* Official brochure content sections */
.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -8px 0 28px;
}
.hero-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #e8f2ff;
    font-weight: 700;
    font-size: 0.9rem;
}
.official-strip {
    padding: 26px 0;
    background: linear-gradient(90deg, var(--navy), var(--navy-2));
    color: var(--white);
}
.institution-grid, .payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.institution-grid article, .payment-grid article {
    border-radius: 18px;
    padding: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}
.institution-grid span, .payment-grid span {
    display: block;
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    margin-bottom: 6px;
}
.institution-grid strong, .payment-grid strong { color: var(--white); }
.compact-info { margin-top: 20px; box-shadow: none; }
.section-actions { margin-top: 22px; }
.section-actions .btn-outline { color: var(--navy); border-color: var(--gray-300); background: var(--white); }
.official-topics { grid-template-columns: repeat(3, 1fr); }
.official-program div { background: linear-gradient(135deg, #ffffff, #f7fbff); }
.table-card {
    background: var(--white);
    border-radius: 22px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    overflow-x: auto;
}
.fees-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}
.fees-table th, .fees-table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--gray-100);
    text-align: left;
}
.fees-table th {
    background: #eaf3ff;
    color: var(--navy);
    font-weight: 900;
}
.fees-table td {
    color: var(--gray-800);
    font-weight: 650;
}
.fees-table tbody tr:hover { background: #f8fbff; }
.payment-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 18px;
}
.payment-grid article {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(11,31,58,0.12);
}
.leadership-grid { grid-template-columns: repeat(5, 1fr); }
.speakers-grid { grid-template-columns: repeat(4, 1fr); }
.committee-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.committee-card {
    border: 1px solid var(--gray-100);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}
.committee-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin: 0 0 14px;
}
.small-list { color: var(--gray-600); }
@media (max-width: 1080px) {
    .leadership-grid { grid-template-columns: repeat(2, 1fr); }
    .payment-grid, .official-topics, .speakers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .institution-grid, .payment-grid, .official-topics, .speakers-grid, .leadership-grid, .committee-split { grid-template-columns: 1fr; }
    .hero-meta-row span { width: 100%; }
}

.map-embed {
    padding: 0;
    border: 0;
    min-height: 360px;
    background: var(--white);
}
.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: var(--radius);
    display: block;
}
.map-embed::after {
    display: none;
}

@media (max-width: 640px) {
    .nav-logo-frame { width: 58px; height: 44px; flex-basis: 58px; border-radius: 13px; }
    .site-logo { width: 72px; height: 72px; }
    .brand small { display: none; }
    .hero-logo { max-width: 260px; border-radius: 18px; }
}


/* Logo safety fix: prevents oversized SVG/PNG rendering in navbar and hero */
.site-header .brand img.site-logo {
    width: 100% !important;
    height: 100% !important;
    max-width: 112px !important;
    max-height: 50px !important;
    object-fit: contain !important;
}
.hero-card img.hero-logo {
    max-width: 420px !important;
    max-height: 230px !important;
    object-fit: contain !important;
}
@media (max-width: 700px) {
    .nav-logo-frame { width: 86px !important; height: 42px !important; flex-basis: 86px !important; }
    .site-header .brand img.site-logo { max-width: 86px !important; max-height: 42px !important; }
    .hero-card img.hero-logo { max-width: 280px !important; max-height: 160px !important; }
}


/* Final logo/layout polish: clean navbar logo and no oversized hero logo */
.navbar {
    min-height: 68px;
}
.brand {
    gap: 12px;
    max-width: 390px;
}
.nav-logo-frame {
    width: 58px !important;
    height: 58px !important;
    flex: 0 0 58px !important;
    border-radius: 14px !important;
    padding: 6px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12) !important;
}
.site-header .brand img.site-logo,
.site-logo {
    width: 100% !important;
    height: 100% !important;
    max-width: 46px !important;
    max-height: 46px !important;
    object-fit: contain !important;
    display: block !important;
}
.brand strong {
    font-size: 1.02rem;
    line-height: 1.1;
}
.brand small {
    font-size: 0.76rem;
    line-height: 1.25;
}
.hero-info-card {
    min-height: 0;
}
.hero-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 85% 10%, rgba(199,163,72,0.18), transparent 34%);
    pointer-events: none;
}
.hero-info-card > * {
    position: relative;
    z-index: 1;
}
.hero-date-box {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    margin: 18px 0 20px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
}
.date-day {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: #ffffff;
}
.date-month {
    font-weight: 800;
    color: #f2c94c;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}
.hero-card img.hero-logo,
.hero-logo {
    display: none !important;
}
@media (max-width: 980px) {
    .navbar { min-height: 64px; }
    .nav-logo-frame { width: 50px !important; height: 50px !important; flex-basis: 50px !important; }
    .site-header .brand img.site-logo, .site-logo { max-width: 40px !important; max-height: 40px !important; }
}
@media (max-width: 560px) {
    .brand small { display: none; }
    .nav-links { top: 64px; }
}

/* Transparent logo fix */
.nav-logo-frame {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 104px !important;
    height: 58px !important;
    flex: 0 0 104px !important;
    border-radius: 0 !important;
}
.site-header .brand img.site-logo,
.site-logo {
    width: 100% !important;
    height: 100% !important;
    max-width: 104px !important;
    max-height: 58px !important;
    object-fit: contain !important;
    background: transparent !important;
}
@media (max-width: 560px) {
    .nav-logo-frame {
        width: 78px !important;
        height: 44px !important;
        flex-basis: 78px !important;
    }
    .site-header .brand img.site-logo,
    .site-logo {
        max-width: 78px !important;
        max-height: 44px !important;
    }
}
