*,*:before,*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
    line-height: 1.5;
    color: #374151;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #f1f5f9
}

::-webkit-scrollbar-thumb {
    background: #5770a5;
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8
}

::selection {
    background-color: #5770a533;
    color: #1f2937
}

button:focus,input:focus,textarea:focus,select:focus {
    outline: 2px solid #5770a5;
    outline-offset: 2px
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideIn {
    0% {
        transform: translate(-20px);
        opacity: 0
    }

    to {
        transform: translate(0);
        opacity: 1
    }
}

.fade-in {
    animation: fadeIn .6s ease-out forwards
}

.slide-in {
    animation: slideIn .6s ease-out forwards
}

@media (max-width: 1024px) {
    .container {
        padding:0 1.5rem
    }
}

@media (max-width: 768px) {
    html {
        font-size:14px
    }

    .container {
        padding: 0 1rem
    }
}

@media print {
    * {
        background: transparent!important;
        color: #000!important;
        box-shadow: none!important;
        text-shadow: none!important
    }

    a,a:visited {
        text-decoration: underline
    }

    @page {
        margin: .5cm
    }
}

@media (prefers-contrast: high) {
    button,.btn {
        border: 2px solid
    }
}

@media (prefers-reduced-motion: reduce) {
    *,*:before,*:after {
        animation-duration: .01ms!important;
        animation-iteration-count: 1!important;
        transition-duration: .01ms!important
    }

    html {
        scroll-behavior: auto
    }
}

.header[data-astro-cid-3ef6ksr2] {
    background: #fffffff2;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(37,99,235,.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all .3s ease
}

.nav-container[data-astro-cid-3ef6ksr2] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo[data-astro-cid-3ef6ksr2] h2[data-astro-cid-3ef6ksr2] {
    margin: 0;
    color: #5770a5;
    font-size: 1.5rem;
    font-weight: 700
}

.logo-image[data-astro-cid-3ef6ksr2] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #5770a5
}

.logo-content[data-astro-cid-3ef6ksr2] {
    display: flex;
    align-items: center;
    gap: 1rem
}

.nav-menu[data-astro-cid-3ef6ksr2] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem
}

.nav-link[data-astro-cid-3ef6ksr2] {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color .3s ease;
    position: relative
}

.nav-link[data-astro-cid-3ef6ksr2]:hover {
    color: #5770a5
}

.nav-link[data-astro-cid-3ef6ksr2]:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5770a5;
    transition: width .3s ease
}

.nav-link[data-astro-cid-3ef6ksr2]:hover:after {
    width: 100%
}

.nav-cta[data-astro-cid-3ef6ksr2] {
    background: linear-gradient(135deg,#5770a5,#219b8b);
    color: #fff!important;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all .3s ease
}

.nav-cta[data-astro-cid-3ef6ksr2]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px #5770a54d
}

.nav-cta[data-astro-cid-3ef6ksr2]:after {
    display: none
}

.mobile-menu-btn[data-astro-cid-3ef6ksr2] {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.mobile-menu-btn[data-astro-cid-3ef6ksr2] span[data-astro-cid-3ef6ksr2] {
    width: 24px;
    height: 2px;
    background: #5770a5;
    transition: all .3s ease
}

@media (max-width: 768px) {
    .nav-menu[data-astro-cid-3ef6ksr2] {
        position:absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fffffffa;
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 6px #0000001a;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease
    }

    .nav-menu[data-astro-cid-3ef6ksr2].active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible
    }

    .mobile-menu-btn[data-astro-cid-3ef6ksr2] {
        display: flex
    }

    .nav-container[data-astro-cid-3ef6ksr2] {
        padding: 1rem
    }
}

.hero[data-astro-cid-bbe6dxrz] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,#f8fafc,#e2e8f0);
    padding-top: 80px;
    position: relative;
    overflow: hidden
}

.hero[data-astro-cid-bbe6dxrz]: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='%232563eb' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat
}

.hero-content[data-astro-cid-bbe6dxrz] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative
}

.hero-title[data-astro-cid-bbe6dxrz] {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1f2937;
    margin: 0 0 1.5rem
}

.gradient-text[data-astro-cid-bbe6dxrz] {
    background: linear-gradient(135deg,#5770a5,#219b8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-description[data-astro-cid-bbe6dxrz] {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 2rem
}

.hero-buttons[data-astro-cid-bbe6dxrz] {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3rem
}

.btn[data-astro-cid-bbe6dxrz] {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem
}

.btn-primary[data-astro-cid-bbe6dxrz] {
    background: linear-gradient(135deg,#5770a5,#219b8b);
    color: #fff;
    box-shadow: 0 4px 14px #5770a54d
}

.btn-primary[data-astro-cid-bbe6dxrz]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #5770a566
}

.btn-secondary[data-astro-cid-bbe6dxrz] {
    background: #fff;
    color: #5770a5;
    border: 2px solid #5770a5
}

.btn-secondary[data-astro-cid-bbe6dxrz]:hover {
    background: #5770a5;
    color: #fff;
    transform: translateY(-2px)
}

.hero-stats[data-astro-cid-bbe6dxrz] {
    display: flex;
    gap: 2rem
}

.stat[data-astro-cid-bbe6dxrz] {
    text-align: center
}

.stat-number[data-astro-cid-bbe6dxrz] {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #5770a5
}

.stat-label[data-astro-cid-bbe6dxrz] {
    font-size: .875rem;
    color: #6b7280;
    font-weight: 500
}

.hero-visual[data-astro-cid-bbe6dxrz] {
    position: relative;
    height: 500px
}

.hero-circle[data-astro-cid-bbe6dxrz] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg,#5770a51a,#219b8b33);
    animation: pulse 4s ease-in-out infinite
}

.floating-card[data-astro-cid-bbe6dxrz] {
    position: absolute;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px #0000001a;
    display: flex;
    align-items: center;
    gap: .5rem;
    animation: float 3s ease-in-out infinite
}

.card-1[data-astro-cid-bbe6dxrz] {
    top: 20%;
    left: 10%;
    animation-delay: 0s
}

.card-2[data-astro-cid-bbe6dxrz] {
    top: 60%;
    right: 10%;
    animation-delay: -1s
}

.card-3[data-astro-cid-bbe6dxrz] {
    bottom: 20%;
    left: 20%;
    animation-delay: -2s
}

.card-icon[data-astro-cid-bbe6dxrz] {
    font-size: 1.5rem
}

.card-text[data-astro-cid-bbe6dxrz] {
    font-weight: 600;
    color: #374151
}

@keyframes pulse {
    0%,to {
        transform: translate(-50%,-50%) scale(1)
    }

    50% {
        transform: translate(-50%,-50%) scale(1.05)
    }
}

@keyframes float {
    0%,to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@media (max-width: 1024px) {
    .hero-content[data-astro-cid-bbe6dxrz] {
        grid-template-columns:1fr;
        text-align: center;
        gap: 2rem
    }

    .hero-title[data-astro-cid-bbe6dxrz] {
        font-size: 2.5rem
    }

    .hero-visual[data-astro-cid-bbe6dxrz] {
        height: 300px
    }

    .hero-circle[data-astro-cid-bbe6dxrz] {
        width: 200px;
        height: 200px
    }
}

@media (max-width: 768px) {
    .hero-content[data-astro-cid-bbe6dxrz] {
        padding:1rem
    }

    .hero-title[data-astro-cid-bbe6dxrz] {
        font-size: 2rem
    }

    .hero-description[data-astro-cid-bbe6dxrz] {
        font-size: 1.1rem
    }

    .hero-buttons[data-astro-cid-bbe6dxrz] {
        justify-content: center
    }

    .btn[data-astro-cid-bbe6dxrz] {
        max-width: 300px
    }

    .hero-stats[data-astro-cid-bbe6dxrz] {
        justify-content: center
    }

    .floating-card[data-astro-cid-bbe6dxrz] {
        display: none
    }
}

.services[data-astro-cid-g5jplrhu] {
    padding: 80px 0;
    background: #fff
}

.container[data-astro-cid-g5jplrhu] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.section-header[data-astro-cid-g5jplrhu] {
    text-align: center;
    margin-bottom: 4rem
}

.section-title[data-astro-cid-g5jplrhu] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem
}

.section-description[data-astro-cid-g5jplrhu] {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto
}

.services-grid[data-astro-cid-g5jplrhu] {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 2rem;
    margin-bottom: 5rem
}

.service-card[data-astro-cid-g5jplrhu] {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px #00000014;
    border: 1px solid #e5e7eb;
    transition: all .3s ease;
    position: relative
}

.service-card[data-astro-cid-g5jplrhu]:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px #5770a526
}

.service-card[data-astro-cid-g5jplrhu].featured {
    border: 2px solid #5770a5;
    transform: scale(1.02)
}

.service-header[data-astro-cid-g5jplrhu] {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative
}

.service-icon[data-astro-cid-g5jplrhu] {
    font-size: 3rem;
    margin-bottom: 1rem
}

.service-title[data-astro-cid-g5jplrhu] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0
}

.service-badge[data-astro-cid-g5jplrhu] {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg,#5770a5,#219b8b);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600
}

.service-description[data-astro-cid-g5jplrhu] {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.service-features[data-astro-cid-g5jplrhu] {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem
}

.service-features[data-astro-cid-g5jplrhu] li[data-astro-cid-g5jplrhu] {
    padding: .5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6
}

.service-features[data-astro-cid-g5jplrhu] li[data-astro-cid-g5jplrhu]:last-child {
    border-bottom: none
}

.service-pricing[data-astro-cid-g5jplrhu] {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px
}

.price-main[data-astro-cid-g5jplrhu] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .5rem;
    margin-bottom: .5rem
}

.price-amount[data-astro-cid-g5jplrhu] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5770a5
}

.price-period[data-astro-cid-g5jplrhu] {
    font-size: 1.125rem;
    color: #6b7280
}

.price-note[data-astro-cid-g5jplrhu] {
    font-size: .875rem;
    color: #6b7280
}

.btn[data-astro-cid-g5jplrhu] {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    border: none;
    cursor: pointer
}

.btn-primary[data-astro-cid-g5jplrhu] {
    background: linear-gradient(135deg,#5770a5,#219b8b);
    color: #fff
}

.btn-primary[data-astro-cid-g5jplrhu]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px #5770a566
}

.btn-secondary[data-astro-cid-g5jplrhu] {
    background: #fff;
    color: #5770a5;
    border: 2px solid #5770a5
}

.btn-secondary[data-astro-cid-g5jplrhu]:hover {
    background: #5770a5;
    color: #fff
}

.process-section[data-astro-cid-g5jplrhu] {
    text-align: center
}

.process-title[data-astro-cid-g5jplrhu] {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 3rem
}

.process-steps[data-astro-cid-g5jplrhu] {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2rem
}

.process-step[data-astro-cid-g5jplrhu] {
    padding: 2rem 1rem
}

.step-number[data-astro-cid-g5jplrhu] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,#5770a5,#219b8b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem
}

.process-step[data-astro-cid-g5jplrhu] h4[data-astro-cid-g5jplrhu] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 .5rem
}

.process-step[data-astro-cid-g5jplrhu] p[data-astro-cid-g5jplrhu] {
    color: #6b7280;
    line-height: 1.5;
    margin: 0
}

@media (max-width: 768px) {
    .services[data-astro-cid-g5jplrhu] {
        padding:60px 0
    }

    .container[data-astro-cid-g5jplrhu] {
        padding: 0 1rem
    }

    .section-title[data-astro-cid-g5jplrhu] {
        font-size: 2rem
    }

    .services-grid[data-astro-cid-g5jplrhu] {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .service-card[data-astro-cid-g5jplrhu].featured {
        transform: none
    }

    .price-amount[data-astro-cid-g5jplrhu] {
        font-size: 2rem
    }
}

.about[data-astro-cid-v2cbyr3p] {
    padding: 80px 0;
    background: linear-gradient(135deg,#f8fafc,#e2e8f0)
}

.container[data-astro-cid-v2cbyr3p] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.about-content[data-astro-cid-v2cbyr3p] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start
}

.section-header[data-astro-cid-v2cbyr3p] {
    margin-bottom: 2rem
}

.section-title[data-astro-cid-v2cbyr3p] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem
}

.section-description[data-astro-cid-v2cbyr3p] {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6
}

.about-details[data-astro-cid-v2cbyr3p] p[data-astro-cid-v2cbyr3p] {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem
}

.skills-section[data-astro-cid-v2cbyr3p],.values-section[data-astro-cid-v2cbyr3p] {
    margin-bottom: 2rem
}

.skills-section[data-astro-cid-v2cbyr3p] h3[data-astro-cid-v2cbyr3p],.values-section[data-astro-cid-v2cbyr3p] h3[data-astro-cid-v2cbyr3p] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem
}

.tech-grid[data-astro-cid-v2cbyr3p] {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem
}

.profiles-section[data-astro-cid-v2cbyr3p],.values-section[data-astro-cid-v2cbyr3p] {
    margin-bottom: 2rem
}

.profiles-section[data-astro-cid-v2cbyr3p] h3[data-astro-cid-v2cbyr3p],.values-section[data-astro-cid-v2cbyr3p] h3[data-astro-cid-v2cbyr3p] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem
}

.profiles-grid[data-astro-cid-v2cbyr3p] {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem
}

.profile-link[data-astro-cid-v2cbyr3p] {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0000000d;
    transition: transform .2s ease;
    text-decoration: none;
    color: inherit
}

.profile-link[data-astro-cid-v2cbyr3p]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #5770a526
}

.profile-icon[data-astro-cid-v2cbyr3p] {
    font-size: 1.25rem
}

.profile-content[data-astro-cid-v2cbyr3p] {
    display: flex;
    flex-direction: column
}

.profile-name[data-astro-cid-v2cbyr3p] {
    font-weight: 500;
    color: #374151
}

.profile-description[data-astro-cid-v2cbyr3p] {
    font-size: .875rem;
    color: #6b7280
}

.values-list[data-astro-cid-v2cbyr3p] {
    list-style: none;
    padding: 0;
    margin: 0
}

.values-list[data-astro-cid-v2cbyr3p] li[data-astro-cid-v2cbyr3p] {
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    margin-bottom: .75rem;
    box-shadow: 0 2px 8px #0000000d;
    line-height: 1.5
}

.values-list[data-astro-cid-v2cbyr3p] li[data-astro-cid-v2cbyr3p] strong[data-astro-cid-v2cbyr3p] {
    color: #5770a5
}

.about-visual[data-astro-cid-v2cbyr3p] {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.stats-card[data-astro-cid-v2cbyr3p] {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px #0000001a;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.stat-item[data-astro-cid-v2cbyr3p] {
    text-align: center
}

.stat-number[data-astro-cid-v2cbyr3p] {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #5770a5;
    margin-bottom: .5rem
}

.stat-label[data-astro-cid-v2cbyr3p] {
    font-size: .875rem;
    color: #6b7280;
    font-weight: 500
}

.certifications[data-astro-cid-v2cbyr3p] {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px #0000001a
}

.certifications[data-astro-cid-v2cbyr3p] h4[data-astro-cid-v2cbyr3p] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.5rem;
    text-align: center
}

.cert-list[data-astro-cid-v2cbyr3p] {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.cert-item[data-astro-cid-v2cbyr3p] {
    padding: .75rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: .9rem;
    color: #374151;
    border-left: 3px solid #5770a5
}

.about-content[data-astro-cid-v2cbyr3p] {
    grid-template-columns: 1fr;
    gap: 2rem
}

.tech-grid[data-astro-cid-v2cbyr3p],.profiles-grid[data-astro-cid-v2cbyr3p] {
    grid-template-columns: 1fr
}
}

@media (max-width: 768px) {
    .about {
        padding:60px 0
    }

    .container {
        padding: 0 1rem
    }

    .section-title {
        font-size: 2rem
    }

    .stats-card {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .tech-grid,.profiles-grid {
        grid-template-columns: 1fr
    }
}

.contact[data-astro-cid-xmivup5a] {
    padding: 80px 0;
    background: #fff
}

.container[data-astro-cid-xmivup5a] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.section-header[data-astro-cid-xmivup5a] {
    text-align: center;
    margin-bottom: 4rem
}

.section-title[data-astro-cid-xmivup5a] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem
}

.section-description[data-astro-cid-xmivup5a] {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto
}

.contact-content[data-astro-cid-xmivup5a] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 5rem
}

.contact-info[data-astro-cid-xmivup5a] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.info-card[data-astro-cid-xmivup5a] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #5770a5
}

.info-icon[data-astro-cid-xmivup5a] {
    font-size: 1.5rem;
    margin-top: .25rem
}

.info-content[data-astro-cid-xmivup5a] h3[data-astro-cid-xmivup5a] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 .5rem
}

.info-content[data-astro-cid-xmivup5a] p[data-astro-cid-xmivup5a] {
    margin: 0;
    color: #6b7280
}

.info-content[data-astro-cid-xmivup5a] a[data-astro-cid-xmivup5a] {
    color: #5770a5;
    text-decoration: none
}

.info-content[data-astro-cid-xmivup5a] a[data-astro-cid-xmivup5a]:hover {
    text-decoration: underline
}

.availability[data-astro-cid-xmivup5a] {
    padding: 1.5rem;
    background: linear-gradient(135deg,#f0f9f5,#e6f7ee);
    border-radius: 12px;
    border-left: 4px solid #10b981
}

.availability[data-astro-cid-xmivup5a] h3[data-astro-cid-xmivup5a] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem
}

.availability-status[data-astro-cid-xmivup5a] {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem
}

.status-dot[data-astro-cid-xmivup5a] {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite
}

.availability-note[data-astro-cid-xmivup5a] {
    font-size: .875rem;
    color: #6b7280;
    margin: 0
}

.contact-form-container[data-astro-cid-xmivup5a] {
    position: relative
}

.contact-form[data-astro-cid-xmivup5a] {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb
}

.form-group[data-astro-cid-xmivup5a] {
    margin-bottom: 1.5rem
}

.form-group[data-astro-cid-xmivup5a] label[data-astro-cid-xmivup5a] {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: .5rem
}

.form-group[data-astro-cid-xmivup5a] input[data-astro-cid-xmivup5a],.form-group[data-astro-cid-xmivup5a] select[data-astro-cid-xmivup5a],.form-group[data-astro-cid-xmivup5a] textarea[data-astro-cid-xmivup5a] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color .3s ease;
    background: #fff
}

.form-group[data-astro-cid-xmivup5a] input[data-astro-cid-xmivup5a]:focus,.form-group[data-astro-cid-xmivup5a] select[data-astro-cid-xmivup5a]:focus,.form-group[data-astro-cid-xmivup5a] textarea[data-astro-cid-xmivup5a]:focus {
    outline: none;
    border-color: #5770a5;
    box-shadow: 0 0 0 3px #5770a51a
}

.form-group[data-astro-cid-xmivup5a] textarea[data-astro-cid-xmivup5a] {
    resize: vertical;
    min-height: 120px
}

.checkbox-group[data-astro-cid-xmivup5a] {
    display: flex;
    align-items: flex-start;
    gap: .75rem
}

.checkbox-label[data-astro-cid-xmivup5a] {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5
}

.checkbox-label[data-astro-cid-xmivup5a] input[data-astro-cid-xmivup5a][type=checkbox] {
    width: auto;
    margin: 0
}

.project-info-message[data-astro-cid-xmivup5a] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg,#eff6ff,#dbeafe);
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    margin-bottom: 1.5rem
}

.project-info-message[data-astro-cid-xmivup5a] .info-icon[data-astro-cid-xmivup5a] {
    font-size: 1.25rem;
    margin-top: .125rem
}

.project-info-message[data-astro-cid-xmivup5a] .info-text[data-astro-cid-xmivup5a] {
    font-size: .9rem;
    line-height: 1.5;
    color: #1e40af
}

.project-info-message[data-astro-cid-xmivup5a] .info-text[data-astro-cid-xmivup5a] strong[data-astro-cid-xmivup5a] {
    color: #1d4ed8
}

.btn[data-astro-cid-xmivup5a] {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem
}

.btn-primary[data-astro-cid-xmivup5a] {
    background: linear-gradient(135deg,#5770a5,#219b8b);
    color: #fff
}

.btn-primary[data-astro-cid-xmivup5a]:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #5770a54d
}

.btn[data-astro-cid-xmivup5a]:disabled {
    opacity: .6;
    cursor: not-allowed
}

.form-footer[data-astro-cid-xmivup5a] {
    margin-top: 1rem;
    text-align: center
}

.form-footer[data-astro-cid-xmivup5a] p[data-astro-cid-xmivup5a] {
    font-size: .875rem;
    color: #6b7280;
    margin: .25rem 0
}

.success-message[data-astro-cid-xmivup5a] {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border: 2px solid #10b981
}

.success-icon[data-astro-cid-xmivup5a] {
    font-size: 4rem;
    margin-bottom: 1rem
}

.success-message[data-astro-cid-xmivup5a] h3[data-astro-cid-xmivup5a] {
    color: #10b981;
    margin: 0 0 1rem
}

.success-message[data-astro-cid-xmivup5a] p[data-astro-cid-xmivup5a] {
    color: #6b7280;
    margin: 0
}

.faq-section[data-astro-cid-xmivup5a] {
    text-align: center
}

.faq-title[data-astro-cid-xmivup5a] {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem
}

.faq-grid[data-astro-cid-xmivup5a] {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 1.5rem
}

.faq-item[data-astro-cid-xmivup5a] {
    text-align: left;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #5770a5
}

.faq-item[data-astro-cid-xmivup5a] h4[data-astro-cid-xmivup5a] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 .75rem
}

.faq-item[data-astro-cid-xmivup5a] p[data-astro-cid-xmivup5a] {
    color: #6b7280;
    line-height: 1.5;
    margin: 0
}

@keyframes pulse {
    0%,to {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

@media (max-width: 1024px) {
    .contact-content[data-astro-cid-xmivup5a] {
        grid-template-columns:1fr;
        gap: 2rem
    }
}

@media (max-width: 768px) {
    .contact[data-astro-cid-xmivup5a] {
        padding:60px 0
    }

    .container[data-astro-cid-xmivup5a] {
        padding: 0 1rem
    }

    .section-title[data-astro-cid-xmivup5a] {
        font-size: 2rem
    }

    .contact-form[data-astro-cid-xmivup5a] {
        padding: 1.5rem
    }

    .faq-grid[data-astro-cid-xmivup5a] {
        grid-template-columns: 1fr
    }
}

.footer[data-astro-cid-sz7xmlte] {
    background: linear-gradient(135deg,#1f2937,#111827);
    color: #fff;
    padding: 60px 0 0
}

.container[data-astro-cid-sz7xmlte] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.footer-content[data-astro-cid-sz7xmlte] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem
}

.footer-section[data-astro-cid-sz7xmlte] h3[data-astro-cid-sz7xmlte] {
    color: #5770a5;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem
}

.footer-section[data-astro-cid-sz7xmlte] h4[data-astro-cid-sz7xmlte] {
    color: #f9fafb;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1.5rem
}

.footer-section[data-astro-cid-sz7xmlte] p[data-astro-cid-sz7xmlte] {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 2rem
}

.social-links[data-astro-cid-sz7xmlte] {
    display: flex;
    gap: 1rem
}

.social-link[data-astro-cid-sz7xmlte] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #5770a51a;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all .3s ease
}

.social-link[data-astro-cid-sz7xmlte]:hover {
    background: #5770a5;
    transform: translateY(-2px)
}

.footer-links[data-astro-cid-sz7xmlte] {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links[data-astro-cid-sz7xmlte] li[data-astro-cid-sz7xmlte] {
    margin-bottom: .75rem
}

.footer-links[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte] {
    color: #d1d5db;
    text-decoration: none;
    transition: color .3s ease
}

.footer-links[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte]:hover {
    color: #5770a5
}

.footer-links[data-astro-cid-sz7xmlte] li[data-astro-cid-sz7xmlte]:not(:has(a)) {
    color: #9ca3af
}

.footer-contact[data-astro-cid-sz7xmlte] {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-contact[data-astro-cid-sz7xmlte] li[data-astro-cid-sz7xmlte] {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem
}

.contact-icon[data-astro-cid-sz7xmlte] {
    font-size: 1rem;
    opacity: .8
}

.footer-contact[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte] {
    color: #d1d5db;
    text-decoration: none;
    transition: color .3s ease
}

.footer-contact[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte]:hover {
    color: #5770a5
}

.footer-contact[data-astro-cid-sz7xmlte] span[data-astro-cid-sz7xmlte]:not(.contact-icon) {
    color: #9ca3af
}

.footer-bottom[data-astro-cid-sz7xmlte] {
    border-top: 1px solid rgba(55,65,81,.3);
    padding: 2rem 0
}

.footer-bottom-content[data-astro-cid-sz7xmlte] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.copyright[data-astro-cid-sz7xmlte] p[data-astro-cid-sz7xmlte] {
    color: #9ca3af;
    margin: 0
}

.legal-links[data-astro-cid-sz7xmlte] {
    display: flex;
    gap: 2rem
}

.legal-links[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte] {
    color: #9ca3af;
    text-decoration: none;
    font-size: .875rem;
    transition: color .3s ease
}

.legal-links[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte]:hover {
    color: #5770a5
}

@media (max-width: 1024px) {
    .footer-content[data-astro-cid-sz7xmlte] {
        grid-template-columns:2fr 1fr;
        gap: 2rem
    }
}

@media (max-width: 768px) {
    .footer[data-astro-cid-sz7xmlte] {
        padding:40px 0 0
    }

    .container[data-astro-cid-sz7xmlte] {
        padding: 0 1rem
    }

    .footer-content[data-astro-cid-sz7xmlte] {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center
    }

    .social-links[data-astro-cid-sz7xmlte] {
        justify-content: center
    }

    .footer-bottom-content[data-astro-cid-sz7xmlte] {
        flex-direction: column;
        text-align: center;
        gap: 1rem
    }

    .legal-links[data-astro-cid-sz7xmlte] {
        justify-content: center
    }
}
