/* ============================================
   TAXORA s.r.o. – Brand-aligned Stylesheet
   Colors: Dark Navy #0d2b55, Mid Blue #1a56db,
           Light Blue #5ba3d9, Accent #60a5fa
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --navy:      #0d2b55;
    --navy-mid:  #1a3d6e;
    --blue:      #1a56db;
    --blue-mid:  #2563eb;
    --blue-light:#5ba3d9;
    --blue-pale: #dbeafe;
    --accent:    #60a5fa;
    --white:     #ffffff;
    --gray-50:   #f8fafc;
    --gray-100:  #f1f5f9;
    --gray-200:  #e2e8f0;
    --gray-400:  #94a3b8;
    --gray-600:  #475569;
    --gray-800:  #1e293b;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius:    16px;
    --shadow-sm: 0 2px 8px rgba(13,43,85,0.08);
    --shadow-md: 0 8px 30px rgba(13,43,85,0.12);
    --shadow-lg: 0 20px 60px rgba(13,43,85,0.18);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ==================== HEADER ==================== */
.header {
    background: var(--white);
    box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.logo-img { height: 48px; width: auto; display: block; }

.header-contact { display: flex; gap: 24px; }
.header-contact a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.header-contact a:hover { color: var(--blue); }
.header-contact i { color: var(--blue); font-size: 0.8rem; }

.nav ul { display: flex; list-style: none; gap: 32px; }
.nav a {
    text-decoration: none;
    color: var(--gray-800);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--accent));
    transition: width 0.3s ease;
    border-radius: 1px;
}
.nav a:hover { color: var(--blue); }
.nav a:hover::after { width: 100%; }

/* Language Switch */
.lang-switch {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    border-radius: 20px;
    padding: 4px;
}
.lang-switch a, .lang-switch .lang-active {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-head);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.2s;
}
.lang-switch a { color: var(--gray-600); }
.lang-switch a:hover { color: var(--blue); }
.lang-active {
    background: var(--navy);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--navy);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all 0.25s;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26,86,219,0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--blue-mid) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,86,219,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    background: var(--blue-pale);
    transform: translateY(-2px);
}

/* ==================== SECTION COMMON ==================== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--accent));
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, #1a4080 70%, var(--blue) 100%);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
.shape-1 {
    width: 600px; height: 600px;
    background: var(--accent);
    top: -200px; right: -150px;
}
.shape-2 {
    width: 400px; height: 400px;
    background: var(--blue-light);
    bottom: -100px; left: -100px;
}
.shape-3 {
    width: 250px; height: 250px;
    background: var(--white);
    top: 40%; left: 40%;
    opacity: 0.04;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--accent);
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 20px 40px;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
    gap: 0;
}
.hero-stat { text-align: center; padding: 0 32px; }
.hero-stat-number {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* ==================== ABOUT ==================== */
.about { padding: 100px 0; background: var(--white); }

.about-content {
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-image { flex-shrink: 0; }
.image-frame {
    position: relative;
    width: 300px;
    height: 300px;
}
.image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.image-decoration {
    position: absolute;
    top: -12px; left: -12px; right: -12px; bottom: -12px;
    border: 3px solid transparent;
    border-radius: calc(var(--radius) + 6px);
    background: linear-gradient(135deg, var(--navy), var(--blue), var(--accent)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    opacity: 0.7;
}
.image-frame::before {
    content: '';
    position: absolute;
    top: 16px; left: 16px;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius);
    z-index: 0;
    opacity: 0.12;
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 24px 0;
}
.pillar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    font-family: var(--font-head);
}
.pillar i { color: var(--blue); font-size: 0.9rem; }

.about-tagline {
    font-size: 1rem;
    color: var(--navy) !important;
    padding: 16px 20px;
    background: var(--blue-pale);
    border-left: 4px solid var(--blue);
    border-radius: 0 8px 8px 0;
    margin-top: 8px !important;
}

/* ==================== SERVICES ==================== */
.services { padding: 100px 0; background: var(--gray-50); }

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--blue), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }

.service-card.featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}
.service-card.featured::before { opacity: 0 !important; }
.service-card.featured:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card.featured h3,
.service-card.featured p { color: var(--white); }
.service-card.featured p { opacity: 0.85; }

.service-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--accent);
    color: var(--navy);
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 10px;
}

.service-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--blue-pale), #c7dffe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--blue);
    transition: all 0.3s;
    flex-shrink: 0;
}
.service-card.featured .service-icon {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
.service-card:not(.featured):hover .service-icon {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    transform: scale(1.08);
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 24px;
}

.service-card .btn {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}

/* ==================== INTERNATIONAL ==================== */
.international {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a4a8f 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.international::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.international-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.international-icon {
    font-size: 3.5rem;
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0.9;
}
.international-text { flex: 1; min-width: 260px; }
.international-text h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.international-text p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; }
.international-text strong { color: var(--accent); }

/* ==================== WHY TAXORA ==================== */
.why { padding: 100px 0; background: var(--white); }

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

.why-card {
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
}
.why-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.why-icon {
    width: 56px; height: 56px;
    background: var(--blue-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 20px;
    transition: all 0.3s;
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
}
.why-card h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}
.why-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }

/* ==================== CONTACT ==================== */
.contact { padding: 100px 0; background: var(--gray-50); }

.contact-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-top: -36px;
    margin-bottom: 48px;
    font-size: 1rem;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--white);
    padding: 36px 48px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    min-width: 200px;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}
.contact-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26,86,219,0.3);
}
.contact-card h4 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.contact-card a, .contact-card span {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.contact-card a:hover { color: var(--navy); }

/* Form */
.contact-form-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}
.form-title {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
    text-align: center;
}
.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.form-group-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    margin-bottom: 22px;
    align-items: center;
}
.form-group-row.align-top { align-items: start; padding-top: 4px; }
.form-group-row label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    font-family: var(--font-head);
}
.form-group-row input,
.form-group-row select,
.form-group-row textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group-row input:focus,
.form-group-row select:focus,
.form-group-row textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group-row textarea { resize: vertical; min-height: 110px; }
.form-submit-wrapper { display: flex; justify-content: flex-end; margin-top: 8px; }
.contact-form .btn { padding: 13px 32px; border-radius: 8px; }















/* ==================== FOOTER ==================== */
.footer {
    background: var(--navy);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer Logo – matches navigation logo size and colors */
.footer-logo {
    height: 48px;                /* Same as .logo-img in header */
    width: auto;
    margin-bottom: 16px;
    display: block;
    filter: none;
    border-radius: 15%;
    border: 10px nivy solid;
}

/* Optional: subtle light background behind logo for better contrast (uncomment if needed) */

.footer-logo {
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 8px;
}


.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 280px;
}

.footer-links h5,
.footer-contact-info h5 {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.footer-contact-info i {
    color: var(--accent);
    font-size: 0.8rem;
    width: 16px;
}

.footer-contact-info a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-lang {
    font-size: 0.8rem;
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 600;
    transition: color 0.2s;
}

.footer-lang:hover {
    color: var(--white);
}

/* Responsive adjustments for footer logo */
@media (max-width: 768px) {
    .footer-logo {
        height: 40px;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

















/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
    .header-contact { display: none; }
    .about-content { flex-direction: column; text-align: center; }
    .image-frame { margin: 0 auto; }
    .about-pillars { justify-content: center; }
    .form-columns { grid-template-columns: 1fr; gap: 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { padding: 16px 20px; }
    .hero-stat { padding: 0 20px; }
}

@media (max-width: 768px) {
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-md); }
    .nav.active { display: block; }
    .nav ul { flex-direction: column; padding: 20px; gap: 16px; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 130px 0 70px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-stat-divider { display: none; }
    .hero-stat { padding: 8px 16px; }
    .hero-stats { flex-direction: row; justify-content: center; }
    .section-title { font-size: 1.9rem; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .contact-form-wrapper { padding: 28px 20px; }
    .form-group-row { grid-template-columns: 1fr; gap: 6px; margin-bottom: 18px; }
    .form-submit-wrapper { justify-content: center; }
    .international-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-cards { flex-direction: column; align-items: center; }
    .contact-card { width: 100%; max-width: 300px; }
    .logo-img { height: 38px; }
}
