* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* Finder Hero */
        .finder-hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 120px 20px 70px;
            position: relative;
            overflow: hidden;
        }

        .finder-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(45deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
            z-index: 1;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            color: #212529;
            margin-bottom: 24px;
        }

        .highlight {
            color: #28a745;
            position: relative;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #28a745, #20c997);
            border-radius: 2px;
        }

        .hero-description {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #6c757d;
            margin-bottom: 40px;
        }

        .hero-features {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 12px 20px;
            border-radius: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f3f4;
        }

        .feature i {
            color: #28a745;
            font-size: 1.1rem;
        }

        .feature span {
            font-size: 0.9rem;
            font-weight: 500;
            color: #495057;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 18px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
            color: white;
            text-decoration: none;
        }

        .btn-secondary {
            background: transparent;
            color: #28a745;
            padding: 18px 32px;
            border: 2px solid #28a745;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #28a745;
            color: white;
            transform: translateY(-2px);
            text-decoration: none;
        }

        /* Hero Form Container */
        .hero-form-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .hero-form-card {
            background: white;
            border-radius: 24px;
            padding: 0;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            border: 1px solid #f1f3f4;
            max-width: 480px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .hero-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
        }

        .form-header {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
            padding: 30px 35px 25px;
            text-align: center;
            border-bottom: 1px solid #f1f3f4;
        }

        .form-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 8px;
        }

        .form-header p {
            color: #28a745;
            font-weight: 600;
            font-size: 1rem;
            margin: 0;
        }

        /* Multi-step Form */
        .hero-form {
            position: relative;
        }

        .form-step {
            display: none;
            padding: 35px;
            animation: fadeInSlide 0.4s ease-out;
        }

        .form-step.active {
            display: block;
        }

        @keyframes fadeInSlide {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .step-header {
            margin-bottom: 30px;
        }

        .step-indicator {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f1f3f4;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .step-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
        }

        /* Form Fields */
        .form-fields {
            margin-bottom: 30px;
        }

        .input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .input-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .input-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #28a745;
            font-size: 1.1rem;
            z-index: 2;
        }

        .input-group input,
        .input-group textarea {
            width: 100%;
            padding: 18px 18px 18px 50px;
            border: 2px solid #e9ecef;
            border-radius: 16px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafbfc;
            font-family: inherit;
        }

        .input-group input:focus,
        .input-group textarea:focus {
            outline: none;
            border-color: #28a745;
            background: white;
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
        }

        .input-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        /* Damage Type Selection */
        .damage-types {
            margin-bottom: 25px;
        }

        .damage-type-label {
            display: block;
            font-weight: 600;
            color: #495057;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .damage-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .damage-option {
            cursor: pointer;
        }

        .damage-option input[type="radio"] {
            display: none;
        }

        .damage-card {
            background: #fafbfc;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 15px 12px;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            min-height: 85px;
            justify-content: center;
        }

        .damage-card i {
            font-size: 1.4rem;
            color: #6c757d;
            transition: all 0.3s ease;
        }

        .damage-card span {
            font-size: 0.85rem;
            font-weight: 600;
            color: #495057;
            transition: all 0.3s ease;
        }

        .damage-option input[type="radio"]:checked + .damage-card {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
            border-color: #28a745;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
        }

        .damage-option input[type="radio"]:checked + .damage-card i {
            color: #28a745;
        }

        .damage-option input[type="radio"]:checked + .damage-card span {
            color: #28a745;
        }

        .damage-card:hover {
            border-color: #28a745;
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(40, 167, 69, 0.15);
        }

        /* Form Buttons */
        .btn-next,
        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            border: none;
            padding: 18px 24px;
            border-radius: 16px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-next:hover,
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
        }

        .form-actions {
            display: flex;
            gap: 15px;
        }

        .btn-back {
            flex: 1;
            background: #f8f9fa;
            color: #6c757d;
            border: 2px solid #e9ecef;
            padding: 18px 24px;
            border-radius: 16px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-back:hover {
            background: #e9ecef;
            border-color: #dee2e6;
        }

        .btn-submit {
            flex: 2;
        }

        /* Form Footer */
        .form-footer {
            background: #f8f9fa;
            padding: 25px 35px;
            border-top: 1px solid #f1f3f4;
        }

        .trust-signals {
            display: flex;
            justify-content: space-between;
            gap: 15px;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center;
            flex: 1;
        }

        .trust-item i {
            color: #28a745;
            font-size: 1.2rem;
        }

        .trust-item span {
            font-size: 0.85rem;
            font-weight: 600;
            color: #495057;
        }

        /* Success Card */
        .hero-success-card {
            background: white;
            border-radius: 24px;
            padding: 40px 35px;
            text-align: center;
            max-width: 480px;
            width: 100%;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            border: 1px solid #f1f3f4;
            position: relative;
        }

        .hero-success-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #28a745, #20c997);
        }

        .success-animation {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            animation: successPulse 2s infinite;
        }

        @keyframes successPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .success-animation i {
            font-size: 2.5rem;
            color: white;
        }

        .hero-success-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 15px;
        }

        .hero-success-card p {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .success-ref {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            padding: 12px 20px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 25px;
            border: 1px solid rgba(40, 167, 69, 0.2);
        }

        .btn-secondary-small {
            background: transparent;
            color: #28a745;
            border: 2px solid #28a745;
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary-small:hover {
            background: #28a745;
            color: white;
            text-decoration: none;
        }

        /* Form Errors */
        .form-errors {
            background: #f8d7da;
            border: 1px solid #f5c6cb;
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .form-errors i {
            color: #721c24;
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .error-list {
            flex: 1;
        }

        .error-item {
            color: #721c24;
            font-size: 0.9rem;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .error-item:last-child {
            margin-bottom: 0;
        }

        /* Expert Benefits */
        .expert-benefits {
            padding: 70px 20px;
            background: #ffffff;
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            transition: all 0.3s ease;
            text-align: center;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .benefit-icon i {
            font-size: 2rem;
            color: white;
        }

        .benefit-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 15px;
        }

        .benefit-card p {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.6;
        }

        /* How it Works */
        .how-it-works {
            padding: 70px 20px;
            background: #ffffff;
        }

        .works-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .works-steps {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .step {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            transition: all 0.3s ease;
        }

        .step:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 10px;
        }

        .step-content p {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .step-features {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Expert Network */
        .expert-network {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .network-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .network-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .network-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
        }

        .network-description {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .network-stats {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .network-stat {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .stat-icon i {
            color: white;
            font-size: 1.5rem;
        }

        .stat-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 5px;
        }

        .stat-content p {
            font-size: 0.95rem;
            color: #6c757d;
        }

        /* Coverage Map */
        .coverage-map {
            background: #f8f9fa;
            border-radius: 20px;
            padding: 40px;
            position: relative;
            height: 500px;
            border: 2px solid #e9ecef;
        }

        .map-overlay {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .map-overlay h4 {
            text-align: center;
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 30px;
        }

        .coverage-cities {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .city-marker {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .marker-dot {
            width: 12px;
            height: 12px;
            background: #28a745;
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
            70% { box-shadow: 0 0 0 8px rgba(40, 167, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
        }

        .city-marker span {
            font-size: 0.75rem;
            font-weight: 600;
            color: #495057;
            background: white;
            padding: 3px 8px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
            border: 1px solid #e9ecef;
        }

        /* Finder CTA */
        .finder-cta {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
        }

        .cta-description {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #495057;
            font-weight: 500;
        }

        .cta-feature i {
            color: #28a745;
            font-size: 1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .cta-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #6c757d;
        }

        .cta-guarantee i {
            color: #28a745;
        }

        /* FAQ Section */
        .faq-section {
            padding: 70px 20px;
            background: #ffffff;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 25px 30px;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(40, 167, 69, 0.02);
        }

        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
            margin: 0;
            flex: 1;
            padding-right: 20px;
        }

        .faq-question i {
            color: #28a745;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: rgba(40, 167, 69, 0.02);
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-answer p {
            padding: 0 30px 25px;
            margin: 0;
            color: #6c757d;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content,
            .network-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section-title,
            .network-title,
            .cta-title {
                font-size: 2rem;
            }

            .trust-indicators {
                justify-content: center;
            }

            .hero-form-card {
                max-width: 400px;
            }

            .damage-options {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .finder-hero {
                padding: 100px 20px 50px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .step {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .hero-cta,
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 300px;
            }

            .cta-features {
                flex-direction: column;
                gap: 15px;
            }

            .hero-features {
                justify-content: center;
            }

            .trust-indicators {
                gap: 20px;
            }

            .network-stats {
                gap: 20px;
            }

            .input-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-actions {
                flex-direction: column;
                gap: 10px;
            }

            .btn-back {
                flex: none;
            }

            .btn-submit {
                flex: none;
            }

            .hero-form-card {
                max-width: 350px;
            }

            .form-header {
                padding: 25px 30px 20px;
            }

            .form-step {
                padding: 30px;
            }

            .form-footer {
                padding: 20px 30px;
            }

            .trust-signals {
                gap: 10px;
            }

            .trust-item span {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .benefit-card {
                padding: 25px 20px;
            }

            .trust-indicators {
                flex-direction: column;
                gap: 15px;
            }

            .coverage-map {
                height: 400px;
                padding: 25px;
            }

            .hero-form-card {
                max-width: 320px;
            }

            .form-header h3 {
                font-size: 1.5rem;
            }

            .form-step {
                padding: 25px;
            }

            .damage-options {
                gap: 8px;
            }

            .damage-card {
                padding: 12px 10px;
                min-height: 75px;
            }

            .damage-card i {
                font-size: 1.2rem;
            }

            .damage-card span {
                font-size: 0.8rem;
            }

            .step-number {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .step-title {
                font-size: 1.1rem;
            }

            .input-group input,
            .input-group textarea {
                padding: 15px 15px 15px 45px;
            }

            .btn-next,
            .btn-submit,
            .btn-back {
                padding: 15px 20px;
                font-size: 1rem;
            }
        }