* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0e1a 0%, #111827 50%, #1f2937 100%);
    color: #e5e7eb;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.hire-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

.hire-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(75, 85, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.hire-description {
    margin-bottom: 2.5rem;
}

.hire-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.highlight-text {
    color: #cbd5e1 !important;
    font-weight: 500;
    font-style: italic;
}

.accent {
    color: #3b82f6;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    background-clip: padding-box;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.1);
}

.btn:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.btn-linkedin {
    background: #0a66c2;
    color: #ffffff;
    border-color: rgba(10, 102, 194, 0.3);
}

.btn-linkedin:hover {
    background: #004182;
    border-color: rgba(10, 102, 194, 0.5);
    box-shadow: 0 15px 40px rgba(10, 102, 194, 0.3);
}

.btn-fiverr {
    background: #1dbf73;
    color: #ffffff;
    border-color: rgba(29, 191, 115, 0.3);
}

.btn-fiverr:hover {
    background: #19a463;
    border-color: rgba(29, 191, 115, 0.5);
    box-shadow: 0 15px 40px rgba(29, 191, 115, 0.3);
}

.btn-download {
    background: rgba(30, 41, 59, 0.8);
    color: #e2e8f0;
    border-color: rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
}

.btn-download:hover {
    background: rgba(67, 56, 202, 0.9);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 40px rgba(67, 56, 202, 0.2);
}

.contact-info {
    opacity: 1;
}

.contact-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hire-container {
        padding: 0.5rem;
        padding-top: 1rem;
        min-height: 70vh;
    }

    .hire-card {
        padding: 2rem;
        max-width: 100%;
    }

    .hire-description p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.875rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hire-container {
        padding-top: 0.5rem;
    }

    .hire-card {
        padding: 1.5rem;
    }

    .hire-description p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .btn-icon {
        width: 18px;
        height: 18px;
    }
}