/* /Components/Components/ContactSection.razor.rz.scp.css */
.contact-content[b-b7js54kart] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    gap: 2rem;
    padding: 2rem 5%;
}

.contact-info[b-b7js54kart] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contact-info h2[b-b7js54kart] {
        font-weight: 800;
        font-size: 250%;
        margin-bottom: 2rem;
        color: white;
    }

.contact-item[b-b7js54kart] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
}

.contact-icon[b-b7js54kart] {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 2rem;
}

.contact-form[b-b7js54kart] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group[b-b7js54kart] {
    margin-bottom: 1rem;
}

    .form-group input[b-b7js54kart],
    .form-group textarea[b-b7js54kart] {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 0.25rem;
        background: rgba(255,255,255,0.1);
        color: white;
        font-size: 1rem;
        transition: border-color 0.3s ease, background-color 0.3s ease;
    }

        .form-group input:focus[b-b7js54kart],
        .form-group textarea:focus[b-b7js54kart] {
            outline: none;
            border-color: rgba(255,255,255,0.6);
            background: rgba(255,255,255,0.15);
        }

        .form-group input[b-b7js54kart]::placeholder,
        .form-group textarea[b-b7js54kart]::placeholder {
            color: rgba(255,255,255,0.7);
        }

.form-control.invalid[b-b7js54kart] {
    border-color: #dc3545;
    background: rgba(220,53,69,0.1);
}

.form-control.valid[b-b7js54kart] {
    border-color: #28a745;
    background: rgba(40,167,69,0.1);
}

.btn-contact[b-b7js54kart] {
    background: white;
    color: #3D417A;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
}

    .btn-contact:hover:not(:disabled)[b-b7js54kart] {
        background: #f8f9fa;
        transform: translateY(-2px);
    }

    .btn-contact:disabled[b-b7js54kart] {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

.validation-message[b-b7js54kart] {
    color: #ffcccc;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .contact-content[b-b7js54kart] {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1rem;
    }

    .contact-info h2[b-b7js54kart] {
        font-size: 200%;
        margin-bottom: 1.5rem;
    }

    .contact-item[b-b7js54kart] {
        font-size: 1rem;
    }

    .contact-icon[b-b7js54kart] {
        font-size: 1.3rem;
    }
}
/* /Components/Components/ServiceCard.razor.rz.scp.css */
.service-card[b-8w3k2fd6yx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    height: 100%;
}

    .service-card:hover[b-8w3k2fd6yx] {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

.service-icon[b-8w3k2fd6yx] {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3D417A;
}

.service-title[b-8w3k2fd6yx] {
    font-weight: 700;
    font-size: 1.25rem;
    color: #3D417A;
    margin-bottom: 0.5rem;
}

.service-description[b-8w3k2fd6yx] {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .service-card[b-8w3k2fd6yx] {
        margin: 0.5rem;
        padding: 1.5rem 1rem;
    }

    .service-icon[b-8w3k2fd6yx] {
        font-size: 2.5rem;
    }

    .service-title[b-8w3k2fd6yx] {
        font-size: 1.1rem;
    }

    .service-description[b-8w3k2fd6yx] {
        font-size: 0.85rem;
    }
}
/* /Components/Components/TeamMember.razor.rz.scp.css */
.team-member[b-u6hcky27sj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.team-photo[b-u6hcky27sj] {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3D417A, #6c7ae0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}
    .team-photo:hover[b-u6hcky27sj] {
        transform: scale(1.05);
    }
    .team-photo img[b-u6hcky27sj] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.team-name[b-u6hcky27sj] {
    font-weight: 700;
    font-size: 1.5rem;
    color: #3D417A;
    margin-bottom: 0.5rem;
}

.team-role[b-u6hcky27sj] {
    font-weight: 500;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-description[b-u6hcky27sj] {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .team-member[b-u6hcky27sj] {
        padding: 1rem;
    }

    .team-photo[b-u6hcky27sj] {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }

    .team-name[b-u6hcky27sj] {
        font-size: 1.3rem;
    }

    .team-description[b-u6hcky27sj] {
        font-size: 0.85rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-qjqtnd4p07] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
.main-header[b-qjqtnd4p07] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(61, 65, 122, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar[b-qjqtnd4p07] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand[b-qjqtnd4p07] {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #3D417A;
}

.logo[b-qjqtnd4p07] {
    width: 180px;
    height: auto;
    margin-right: 0.75rem;
}

.logo-link[b-qjqtnd4p07] {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.brand-text[b-qjqtnd4p07] {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D417A;
    text-decoration: none;
}

.navbar-menu[b-qjqtnd4p07] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link[b-qjqtnd4p07] {
    color: #3D417A;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .nav-link:hover[b-qjqtnd4p07] {
        background: rgba(61, 65, 122, 0.1);
        color: #3D417A;
    }

.navbar-toggle[b-qjqtnd4p07] {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line[b-qjqtnd4p07] {
    width: 25px;
    height: 3px;
    background: #3D417A;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.main-content[b-qjqtnd4p07] {
    flex: 1;
    margin-top: 80px; /* Header-H�he */
}

/* Footer Styles */
.main-footer[b-qjqtnd4p07] {
    background: #2c3e50;
    color: white;
    margin-top: 5%;
}

.footer-content[b-qjqtnd4p07] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 5%;
    max-width: 1500px;
    margin: 0 auto;
}

.footer-section h4[b-qjqtnd4p07] {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-logo[b-qjqtnd4p07] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img[b-qjqtnd4p07] {
    width: 120px;
    height: auto;
    margin-right: 0.5rem;
}

.footer-brand[b-qjqtnd4p07] {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-description[b-qjqtnd4p07] {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links[b-qjqtnd4p07] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li[b-qjqtnd4p07] {
        margin-bottom: 0.5rem;
    }

    .footer-links a[b-qjqtnd4p07] {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover[b-qjqtnd4p07] {
            color: white;
        }

.footer-contact p[b-qjqtnd4p07] {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.social-links[b-qjqtnd4p07] {
    display: flex;
    gap: 1rem;
}

.social-link[b-qjqtnd4p07] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover[b-qjqtnd4p07] {
        background: #3D417A;
        color: white;
        transform: translateY(-2px);
    }

.footer-bottom[b-qjqtnd4p07] {
    background: #34495e;
    padding: 1rem 0;
}

.footer-bottom-content[b-qjqtnd4p07] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-legal[b-qjqtnd4p07] {
    display: flex;
    gap: 2rem;
}

    .footer-legal a[b-qjqtnd4p07] {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .footer-legal a:hover[b-qjqtnd4p07] {
            color: white;
        }

/* Mobile Navigation */
@media (max-width: 1024px) {
    .navbar-menu[b-qjqtnd4p07] {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(61, 65, 122, 0.1);
    }

        .navbar-menu.active[b-qjqtnd4p07] {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

    .navbar-toggle[b-qjqtnd4p07] {
        display: flex;
    }

    .footer-content[b-qjqtnd4p07] {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar[b-qjqtnd4p07] {
        padding: 1rem 3%;
    }

    .brand-text[b-qjqtnd4p07] {
        font-size: 1.25rem;
    }

    .footer-content[b-qjqtnd4p07] {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 3%;
    }

    .footer-bottom-content[b-qjqtnd4p07] {
        flex-direction: column;
        gap: 1rem;
        padding: 0 3%;
    }

    .footer-legal[b-qjqtnd4p07] {
        gap: 1rem;
    }
}

#blazor-error-ui[b-qjqtnd4p07] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-qjqtnd4p07] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Home.razor.rz.scp.css */
/* Hero Section - außerhalb des Grids */
.hero-section[b-wppzz6vg0f] {
    position: relative;
    height: clamp(300px, 40vh, 500px);
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-image[b-wppzz6vg0f] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.hero-text-overlay[b-wppzz6vg0f] {
    position: absolute;
    bottom: 20%;
    left: 5%;
    right: 5%;
    z-index: 10;
}

.hero-title[b-wppzz6vg0f] {
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 0.5rem;
    word-break: break-word;
    word-wrap: break-word;
}

.hero-subtitle[b-wppzz6vg0f] {
    font-weight: 800;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin: 0;
    word-break: break-word;
    word-wrap: break-word;
}

/* Content Grid - sauber und kontrolliert */
.content-grid[b-wppzz6vg0f] {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 1rem;
    max-width: 1500px;
    margin: 0 auto;
}

/* About Us Section */
.area_aboutus[b-wppzz6vg0f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 1rem;
    align-items: center;
}

.aboutus-text h2[b-wppzz6vg0f] {
    font-weight: 800;
    font-size: 2.5rem;
    color: #3D417A;
    margin-bottom: 1.5rem;
    word-break: break-word;
    word-wrap: break-word;
}

.aboutus-text p[b-wppzz6vg0f] {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
    word-break: break-word;
    word-wrap: break-word;
}

.aboutus-image[b-wppzz6vg0f] {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .aboutus-image img[b-wppzz6vg0f] {
        max-width: 300px;
        width: 100%;
        height: auto;
    }

/* Local SEO Section */
.area_local_seo[b-wppzz6vg0f] {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.local-seo-content[b-wppzz6vg0f] {
    max-width: 900px;
    margin: 0 auto;
}

    .local-seo-content h2[b-wppzz6vg0f] {
        font-weight: 800;
        font-size: 2.5rem;
        color: #3D417A;
        margin-bottom: 1.5rem;
        word-break: break-word;
        word-wrap: break-word;
    }

    .local-seo-content p[b-wppzz6vg0f] {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        color: #333;
        word-break: break-word;
        word-wrap: break-word;
    }

/* Services Section */
.area_services[b-wppzz6vg0f] {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.services-header[b-wppzz6vg0f] {
    text-align: center;
    margin-bottom: 3rem;
}

    .services-header h2[b-wppzz6vg0f] {
        font-weight: 800;
        font-size: 2.5rem;
        color: #3D417A;
        margin: 0;
    }

.services-grid[b-wppzz6vg0f] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Team Section */
.area_team[b-wppzz6vg0f] {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 1rem;
}

.team-header[b-wppzz6vg0f] {
    text-align: center;
    margin-bottom: 3rem;
}

    .team-header h2[b-wppzz6vg0f] {
        font-weight: 800;
        font-size: 2.5rem;
        color: #3D417A;
        margin: 0;
    }

.team-grid[b-wppzz6vg0f] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Contact Section */
.area_contact[b-wppzz6vg0f] {
    background-color: #3D417A;
    color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
}

/* Responsive Design für Tablets */
@media (max-width: 1024px) {
    .hero-section[b-wppzz6vg0f] {
        height: clamp(250px, 35vh, 450px);
        margin-bottom: 2.5rem;
    }

    .content-grid[b-wppzz6vg0f] {
        padding: 1rem 0.5rem;
        gap: 3rem;
    }

    .area_aboutus[b-wppzz6vg0f] {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        text-align: center;
        gap: 1.5rem;
    }

    .aboutus-text h2[b-wppzz6vg0f] {
        font-size: 2.2rem;
    }

    .services-grid[b-wppzz6vg0f] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .services-header h2[b-wppzz6vg0f],
    .team-header h2[b-wppzz6vg0f] {
        font-size: 2.2rem;
    }

    .team-grid[b-wppzz6vg0f] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .area_services[b-wppzz6vg0f],
    .area_team[b-wppzz6vg0f],
    .area_local_seo[b-wppzz6vg0f],
    .area_contact[b-wppzz6vg0f] {
        padding: 2.5rem 1.5rem;
    }
}

/* Responsive Design für Mobile */
@media (max-width: 768px) {
    .hero-section[b-wppzz6vg0f] {
        height: clamp(200px, 30vh, 350px);
        margin-bottom: 2rem;
    }

    .hero-text-overlay[b-wppzz6vg0f] {
        bottom: 15%;
        left: 1rem;
        right: 1rem;
        text-align: center;
    }

    .hero-title[b-wppzz6vg0f] {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    }

    .hero-subtitle[b-wppzz6vg0f] {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .content-grid[b-wppzz6vg0f] {
        gap: 2rem;
        padding: 0.5rem;
    }

    .area_aboutus[b-wppzz6vg0f],
    .area_services[b-wppzz6vg0f],
    .area_team[b-wppzz6vg0f],
    .area_local_seo[b-wppzz6vg0f],
    .area_contact[b-wppzz6vg0f] {
        padding: 2rem 1rem;
    }

    .services-grid[b-wppzz6vg0f],
    .team-grid[b-wppzz6vg0f] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-header h2[b-wppzz6vg0f],
    .team-header h2[b-wppzz6vg0f],
    .local-seo-content h2[b-wppzz6vg0f],
    .aboutus-text h2[b-wppzz6vg0f] {
        font-size: 2rem;
    }

    .aboutus-text p[b-wppzz6vg0f],
    .local-seo-content p[b-wppzz6vg0f] {
        font-size: 0.9rem;
    }

    .aboutus-image img[b-wppzz6vg0f] {
        max-width: 200px;
    }
}

/* Extra kleine Bildschirme */
@media (max-width: 480px) {
    .hero-section[b-wppzz6vg0f] {
        height: clamp(180px, 25vh, 300px);
        margin-bottom: 1.5rem;
    }

    .content-grid[b-wppzz6vg0f] {
        gap: 1.5rem;
        padding: 0.25rem;
    }

    .area_aboutus[b-wppzz6vg0f],
    .area_services[b-wppzz6vg0f],
    .area_team[b-wppzz6vg0f],
    .area_local_seo[b-wppzz6vg0f],
    .area_contact[b-wppzz6vg0f] {
        padding: 1.5rem 0.75rem;
    }

    .services-header h2[b-wppzz6vg0f],
    .team-header h2[b-wppzz6vg0f],
    .local-seo-content h2[b-wppzz6vg0f],
    .aboutus-text h2[b-wppzz6vg0f] {
        font-size: 1.75rem;
    }

    .hero-title[b-wppzz6vg0f] {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .hero-subtitle[b-wppzz6vg0f] {
        font-size: clamp(0.9rem, 3.5vw, 1.3rem);
    }

    .aboutus-text p[b-wppzz6vg0f],
    .local-seo-content p[b-wppzz6vg0f] {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Hover-Effekte für Desktop */
@media (hover: hover) {
    .area_services[b-wppzz6vg0f],
    .area_team[b-wppzz6vg0f],
    .area_aboutus[b-wppzz6vg0f],
    .area_local_seo[b-wppzz6vg0f] {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .area_services:hover[b-wppzz6vg0f] {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

    .hero-image[b-wppzz6vg0f] {
        transition: transform 0.3s ease;
    }

    .hero-section:hover .hero-image[b-wppzz6vg0f] {
        transform: scale(1.02);
    }
}
/* /Components/Pages/Impressum.razor.rz.scp.css */
.legal-page[b-qlyl4z6ci5] {
    min-height: calc(100vh - 160px);
    padding: 4rem 0;
    background: #f8f9fa;
}

.legal-content[b-qlyl4z6ci5] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .legal-content h1[b-qlyl4z6ci5] {
        color: #3D417A;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        font-weight: 700;
    }

    .legal-content h2[b-qlyl4z6ci5] {
        color: #3D417A;
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .legal-content h3[b-qlyl4z6ci5] {
        color: #3D417A;
/* /Components/Pages/Visitenkarte.razor.rz.scp.css */
.digital-card-page[b-dswxkj628c] {
    min-height: 100vh;
    background: linear-gradient(180deg, #3D417A 0%, #2f335f 100%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 1rem;
}

.digital-card[b-dswxkj628c] {
    width: 100%;
    max-width: 480px;
    color: white;
    text-align: center;
    position: relative;
}

.card-logo[b-dswxkj628c] {
    width: 150px;
    max-width: 45%;
    margin: 0 auto 1.5rem;
    display: block;
}

.profile-image[b-dswxkj628c] {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    background: #f4f4f4;
    border: 5px solid rgba(255, 255, 255, 0.95);
    margin: 0 auto 1.2rem;
    display: block;
}

.profile-section h1[b-dswxkj628c] {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    color: white;
}

.profile-section p[b-dswxkj628c] {
    margin: 0.35rem 0 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.quick-icons[b-dswxkj628c] {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

    .quick-icons a[b-dswxkj628c] {
        color: white;
        font-size: 1.8rem;
        text-decoration: none;
    }

.save-contact[b-dswxkj628c] {
    width: 100%;
    background: white;
    color: #3D417A;
    border-radius: 12px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact-section h2[b-dswxkj628c] {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.contact-item[b-dswxkj628c] {
    width: 100%;
    background: white;
    color: #3D417A;
    border-radius: 12px;
    min-height: 58px;
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1rem;
    overflow: hidden;
}

    .contact-item span[b-dswxkj628c] {
        font-size: 1.5rem;
        text-align: center;
    }

    .contact-item p[b-dswxkj628c] {
        margin: 0;
        text-align: center;
        padding-right: 56px;
        color: #3D417A;
    }

.back-link[b-dswxkj628c] {
    display: block;
    color: white;
    margin-top: 2rem;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.9;
}

@media (max-width: 600px) {
    .digital-card-page[b-dswxkj628c] {
        padding: 2rem 1rem;
    }

    .profile-image[b-dswxkj628c] {
        width: 135px;
        height: 135px;
    }

    .profile-section h1[b-dswxkj628c] {
        font-size: 1.9rem;
    }

    .card-logo[b-dswxkj628c] {
        width: 130px;
    }
}
