/* Combined CSS for ImoCheck - All styles in one file */

/* ==================== RESET AND BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);e
    min-height: 100vh;
}

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

/* ==================== HEADER ==================== */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 8px;
    padding: 8px;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: #3498db;
    font-weight: 400;
    font-size: 0.8em;
}

/* ==================== HERO SECTION ==================== */
.hero {
    text-align: center;
    padding: 3rem 0 2rem;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* ==================== FUNNEL CONTAINER ==================== */
.funnel-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    margin-bottom: 3rem;
}

/* ==================== PROGRESS BAR ==================== */
.progress-bar {
    background: #ecf0f1;
    height: 8px;
    position: relative;
}

.progress-fill {
    background: linear-gradient(90deg, #3498db, #2980b9);
    height: 100%;
    width: 16.66%;
    transition: width 0.5s ease;
}

/* ==================== STEP INDICATOR ==================== */
.step-indicator {
    display: flex;
    justify-content: center;
    padding: 2rem 2rem 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.step {
    text-align: center;
    margin: 0 1rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step.active {
    opacity: 1;
    color: #3498db;
    font-weight: bold;
}

.step.completed {
    opacity: 1;
    color: #27ae60;
}

.step-number {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #bdc3c7;
    color: white;
    line-height: 30px;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #3498db;
}

.step.completed .step-number {
    background: #27ae60;
}

/* ==================== FUNNEL CONTENT ==================== */
.funnel-content {
    padding: 2rem 1.5rem;
    min-height: 400px;
}

.step-content {
    display: none;
    animation: slideIn 0.5s ease;
}

.step-content.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.step-subtitle {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ==================== OPTION GRID ==================== */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.option-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.1);
}

.option-card.selected {
    border-color: #3498db;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.option-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* ==================== FORM STYLES ==================== */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.input-with-unit {
    position: relative;
    display: inline-block;
    width: 100%;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.unit-label {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    font-weight: bold;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

/* ==================== CONTACT GRID ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ==================== BUTTON STYLES ==================== */
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 120px;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

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

/* ==================== CHECKBOX STYLES ==================== */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container:hover .checkmark {
    border-color: #3498db;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-color: #3498db;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ==================== TRUST BADGES ==================== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-number {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

/* ==================== DISCLAIMER ==================== */
.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
    margin-top: 2rem;
    line-height: 1.5;
}

/* ==================== FOOTER ==================== */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 6px;
    padding: 6px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand .logo-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-brand .logo-accent {
    color: #3498db;
    font-weight: 400;
    font-size: 0.9em;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== MODALS ==================== */
.success-header p,
.error-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.success-body,
.error-body {
    padding: 2.5rem 2rem;
}

.success-message h3 {
    color: #065f46;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.success-message p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-features {
    display: grid;
    gap: 1rem;
}

.success-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.feature-icon {
    font-size: 1.5rem;
}

.error-contact {
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    margin-top: 1.5rem;
}

.error-contact p {
    margin: 0.5rem 0;
    color: #374151;
}

.success-actions,
.error-actions {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.success-btn,
.error-btn {
    padding: 1.5rem 3rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.success-btn::before,
.error-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.success-btn:hover::before,
.error-btn:hover::before {
    left: 100%;
}

.btn-primary.success-btn {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-primary.success-btn:hover {
    background: linear-gradient(135deg, #059669, #047857, #065f46);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.5);
}

.btn-secondary.error-btn {
    background: #f3f4f6;
    color: #6b7280;
}

.btn-primary.error-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-primary.error-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}

/* Legal Modal */
.legal-modal {
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 10000 !important;
    padding: 2rem;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
}

.legal-modal.show {
    display: flex !important;
}

.legal-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.legal-modal-content h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.legal-modal-content h3 {
    color: #34495e;
    margin: 1.5rem 0 1rem;
}

.legal-modal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        padding: 1rem 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    /* Step Indicator Mobile */
    .step-indicator {
        display: none;
    }

    /* Option Grid Mobile */
    .option-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin: 0.5rem 0;
    }

    .option-card {
        padding: 0.8rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 0.8rem;
        min-height: 50px;
    }
    
    .option-card .option-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .option-card .option-title {
        margin-bottom: 0;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .option-card small {
        display: none;
    }

    /* Form Groups Mobile */
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Contact Grid Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    /* Step Content Mobile */
    .step-title {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .step-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    /* Funnel Container Mobile */
    .funnel-content {
        padding: 0.8rem;
        min-height: auto;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
    }

    /* Button Group Mobile */
    .button-group {
        margin-top: 0.8rem;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 0.8rem 1rem;
        border-top: 1px solid #e9ecef;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Modal Mobile */
    .success-modal-content,
    .error-modal-content {
        border-radius: 20px;
        margin: 1rem;
    }
    
    .success-header,
    .error-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .success-body,
    .error-body {
        padding: 2rem 1.5rem;
    }
    
    .success-actions,
    .error-actions {
        padding: 1.5rem;
        flex-direction: column;
    }

    .legal-modal {
        padding: 1rem;
    }
    
    .legal-modal-content {
        padding: 1.5rem;
    }

    /* Hide unnecessary elements on mobile */
    .trust-badges,
    .footer {
        display: none;
    }

    /* Mobile optimized layout */
    body {
        padding: 0;
        margin: 0;
    }
    
    .container {
        padding: 0;
        max-width: 100%;
    }
    
    main {
        min-height: 100vh;
    }
    
    .header {
        position: relative;
        flex-shrink: 0;
    }
    
    .funnel-container {
        margin: 0;
        border-radius: 0;
        min-height: calc(100vh - 60px);
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }
    
    .progress-bar {
        order: 1;
        flex-shrink: 0;
    }
    
    .funnel-content {
        order: 2;
        flex: 1;
        padding: 0.8rem;
        min-height: auto;
        max-height: none;
        overflow-y: visible;
    }
    
    .step-content {
        display: flex;
        flex-direction: column;
        padding-bottom: 100px;
    }
    
    .step-content.active {
        display: flex;
    }

    /* Step specific mobile adjustments */
    .step {
        margin: 0 0.5rem;
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .step span:not(.step-number) {
        display: none;
    }
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .option-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .funnel-content {
        padding: 1.5rem;
    }
}

/* Large Screen Adjustments */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .funnel-container {
        max-width: 900px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
}modal,
.error-modal {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.9) !important;
    z-index: 99999 !important;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(20px);
}

.success-modal-content,
.error-modal-content {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    animation: modalBounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.4),
        0 16px 40px rgba(0,0,0,0.2);
    position: relative;
}

@keyframes modalBounceIn {
    from {
        transform: scale(0.3) translateY(100px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.success-header {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
    color: white;
    padding: 4rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.success-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.success-header::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    animation: shine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.error-header {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.success-icon,
.error-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: successPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    position: relative;
    z-index: 1;
}

@keyframes successPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
    }
}

.success-header h2,
.error-header h2 {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}












/* Header-Logo deutlich vergrößern */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 80px;          /* Viel größer! */
    height: 80px;         /* Viel größer! */
    object-fit: contain;
}

.logo-text {
    font-size: 2.8rem;    /* Deutlich größerer Text */
    font-weight: bold;
}

.logo-accent {
    color: #3498db;
}

/* Header mehr Platz geben */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;    /* Mehr Padding für größeres Logo */
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 2.2rem;
    }
    
    .header {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
}
