:root {
    --primary-purple: #590ea1;
    --primary-cyan: #0bd9cc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.btn-gradient-purple {
    background: linear-gradient(135deg, #590ea1 0%, #6b1db5 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-gradient-purple:hover {
    box-shadow: 0 10px 25px rgba(89, 14, 161, 0.3);
    transform: translateY(-2px);
}

.btn-gradient-cyan {
    background-color: #0bd9cc;
    color: black;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.125rem;
}

.btn-gradient-cyan:hover {
    opacity: 0.9;
    box-shadow: 0 10px 25px rgba(11, 217, 204, 0.3);
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(89, 14, 161, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
    border-color: #d8bfd8;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: #590ea1;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(89, 14, 161, 0.1);
}

.receive-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.receive-card:hover {
    background: linear-gradient(to bottom right, #f8f9ff, #f5f3ff);
    box-shadow: 0 10px 25px rgba(89, 14, 161, 0.08);
    border-color: #e9d5ff;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #590ea1;
    color: white;
    font-size: 1.5rem;
}

.success-message {
    display: none;
    background-color: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #6ee7b7;
    animation: slideIn 0.3s ease-out;
}

.error-message {
    display: none;
    background-color: #fee2e2;
    color: #991b1b;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #fca5a5;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section h2 {
    letter-spacing: -0.5px;
}

section p {
    letter-spacing: 0.2px;
}
