* {
    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-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-10, .col-md-12 {
    padding: 0 15px;
}

.col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-md-3 { flex: 0 0 25%; max-width: 25%; }
.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }

.col-lg-3 { flex: 0 0 25%; max-width: 25%; }

.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.header-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-switch {
    display: none;
    font-size: 24px;
    color: #2563eb;
    cursor: pointer;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin: 0 20px;
}

.main-menu a {
    text-decoration: none;
    color: #1e40af;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-menu a:hover {
    color: #2563eb;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.main-menu a:hover::after {
    width: 100%;
}

.site-blocks-cover {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.site-blocks-cover.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(37, 99, 235, 0.6));
}

.site-blocks-cover .container {
    position: relative;
    z-index: 2;
}

.site-blocks-cover h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.site-blocks-cover .desc {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.mouse {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
}

.mouse-icon {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.mouse-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 20% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

.page-section {
    padding: 80px 0;
}

.service-item-29191 {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
}

.service-item-29191:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.service-item-29191 h3 {
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-item-29191 p {
    color: #64748b;
    line-height: 1.7;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 50%;
    margin: 0 auto;
}

.ftco-counter {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ftco-counter .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(37, 99, 235, 0.8));
}

.ftco-counter .container {
    position: relative;
    z-index: 2;
}

.counter-wrap {
    margin-bottom: 30px;
}

.block-18 {
    text-align: center;
    color: white;
}

.block-18 .icon {
    margin-bottom: 20px;
}

.block-18 .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.block-18 span {
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-section {
    background: #f8fafc;
    padding: 80px 0;
}

.services-section .row {
    margin: 0;
}

.services-section .col-md-6,
.services-section .col-lg-3 {
    padding: 0;
}

.block-6 {
    padding: 60px 40px;
    text-align: center;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.block-6:hover,
.block-6.active {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.block-6 .icon {
    margin-bottom: 30px;
}

.block-6 .heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 20px;
}

.block-6:hover .heading,
.block-6.active .heading {
    color: white;
}

.block-6 p {
    color: #64748b;
    line-height: 1.7;
}

.block-6:hover p,
.block-6.active p {
    color: rgba(255, 255, 255, 0.9);
}

.main-section {
    padding: 80px 0;
}

.block-header-1 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.block-header-1 p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slider .slide.active {
    display: block;
    opacity: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.block-team-card-1 {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.block-team-card-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.block-team-card-1 figure {
    margin-bottom: 20px;
}

.block-team-card-1 img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #dbeafe;
}

.block-team-card-1 h3 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 5px;
}

.font-gray-6 {
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section {
    background: #f8fafc;
}

.contact-info {
    padding: 30px 20px;
}

.contact-info h5 {
    color: #1e40af;
    font-weight: 600;
    margin: 15px 0 10px;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 0;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e40af;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.footer-section {
    background: #1e293b !important;
    color: white;
    padding: 60px 0 30px;
}

.footer-section h5,
.footer-section h6 {
    color: #3b82f6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-section hr {
    border-color: #334155;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 64, 175, 0.95);
    color: white;
    padding: 20px 0;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #bfdbfe;
    text-decoration: underline;
}

.bg-light {
    background-color: #f8fafc !important;
}

.bg-dark {
    background-color: #1e293b !important;
}

.text-center {
    text-align: center;
}

.text-white {
    color: white !important;
}

.text-black {
    color: #1e293b !important;
}

.text-uppercase {
    text-transform: uppercase;
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }

.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.d-block { display: block; }
.d-flex { display: flex; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.rounded { border-radius: 0.375rem; }
.rounded-circle { border-radius: 50%; }

.img-fluid {
    max-width: 100%;
    height: auto;
}

.h-100 { height: 100%; }

.font-size-19 { font-size: 1.1875rem; }
.font-size-11 { font-size: 0.6875rem; }

.letter-spacing-1 { letter-spacing: 0.0625rem; }

@media (max-width: 768px) {
    .nav-switch {
        display: block;
    }
    
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-menu.active {
        display: flex;
    }
    
    .main-menu li {
        margin: 10px 0;
    }
    
    .site-blocks-cover h1 {
        font-size: 2.5rem;
    }
    
    .site-blocks-cover .desc {
        font-size: 1.1rem;
    }
    
    .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-10, .col-md-12,
    .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .services-section .col-md-6,
    .services-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .block-6 {
        margin-bottom: 1px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .site-blocks-cover h1 {
        font-size: 2rem;
    }
    
    .block-6 {
        padding: 40px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

.smoothscroll {
    scroll-behavior: smooth;
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

.page-header {
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header .lead {
    font-size: 1.2rem;
    font-weight: 300;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.service-icon {
    text-align: center;
    margin-bottom: 30px;
}

.service-card h3 {
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: #64748b;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.value-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    padding: 15px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.value-card h4 {
    color: #1e40af;
    font-weight: 600;
}

.certification-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    padding: 15px;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.benefit-item {
    padding: 30px 20px;
}

.benefit-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h4 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #64748b;
    margin: 0;
}

.feature-item h5 {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.text-primary {
    color: #2563eb !important;
}

.lead {
    font-size: 1.125rem;
    font-weight: 300;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.contact-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card h4 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #64748b;
    margin-bottom: 10px;
}

.contact-form-wrapper {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check-input {
    margin-top: 4px;
    flex-shrink: 0;
}

.form-check-label {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.form-check-label a {
    color: #2563eb;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.company-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
    height: 100%;
}

.company-info-card h5 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.info-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item strong {
    color: #1e40af;
    font-weight: 600;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
    text-align: left;
}

.faq-question {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-answer {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.text-muted {
    color: #94a3b8 !important;
}

.legal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
    line-height: 1.7;
}

.legal-content h2 {
    color: #1e40af;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: #2563eb;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: #64748b;
    margin-bottom: 15px;
}

.legal-content ul {
    color: #64748b;
    margin-bottom: 15px;
    padding-left: 25px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: #1e40af;
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.cookie-table th {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover {
    background-color: #f8fafc;
}

.highlight-box {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid #2563eb;
}

.highlight-box h3 {
    color: #1e40af !important;
    margin-top: 0 !important;
    margin-bottom: 15px;
}

.highlight-box p {
    color: #1e40af !important;
    font-weight: 500;
    margin-bottom: 0;
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.thank-you-content, .error-content {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
}

.success-icon, .error-icon {
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
}

.thank-you-content h1, .error-content h1 {
    color: #1e40af;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-summary {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.contact-summary h3 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.summary-item {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: #2563eb;
    font-weight: 600;
    min-width: 120px;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h3 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.action-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-primary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline-primary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.contact-alternatives {
    background: #fef2f2;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
    border-left: 4px solid #ef4444;
}

.contact-alternatives h3 {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.contact-option {
    padding: 10px 0;
    color: #64748b;
}

.contact-option strong {
    color: #dc2626;
    font-weight: 600;
    min-width: 80px;
    display: inline-block;
}
