.consultation-section {
    padding: 40px 0;
}

.consultation-card {
    background: rgba(31, 165, 253, 0.08);
    border: 1px solid rgba(31, 165, 253, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.consultation-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #1fa5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.consultation-content p {
    color: #c1d1e9;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 165, 253, 0.1), rgba(13, 202, 240, 0.1));
    border: 1px solid rgba(31, 165, 253, 0.2);
    color: #1fa5fd;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-icon:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(31, 165, 253, 0.2), rgba(13, 202, 240, 0.2));
    border-color: rgba(31, 165, 253, 0.4);
    color: #fff;
    box-shadow: 0 10px 20px rgba(31, 165, 253, 0.3);
}

.social-icon i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(31, 165, 253, 0.05);
    border: 1px solid rgba(31, 165, 253, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(31, 165, 253, 0.3);
    background: rgba(31, 165, 253, 0.1);
}

.consultation-btn {
    padding: 15px 30px;
    background: linear-gradient(90deg, #1fa5fd, #0dcaf0);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(31, 165, 253, 0.2);
}

.consultation-btn i {
    transition: transform 0.3s ease;
}

.consultation-btn:hover i {
    transform: translateX(5px);
}

.privacy-notice {
    margin: 10px auto;
    max-width: 360px;
    align-items: center;
    text-align: center;
}

.privacy-text {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.privacy-text a {
    color: #007bff;
    text-decoration: underline;
}

.privacy-text a:hover {
    text-decoration: none;
}

/* Privacy checkbox styles */
.privacy-notice .privacy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    text-align: left;
}

.privacy-notice .privacy-checkbox {
    display: none;
}

.privacy-notice .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #8b9bb4;
    border-radius: 4px;
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
    margin-top: 2px;
    animation: blink-attention 1.5s ease-in-out infinite;
}

.privacy-notice .privacy-checkbox:checked + .checkmark {
    background: #1fa5fd;
    border-color: #1fa5fd;
    animation: none;
}

.privacy-notice .privacy-checkbox:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-notice .privacy-checkbox-label:hover .checkmark {
    border-color: #1fa5fd;
}

.privacy-notice .privacy-text {
    color: #8b9bb4;
    font-size: 0.9rem;
    line-height: 1.4;
}

.privacy-notice .privacy-text a {
    color: #1fa5fd;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-notice .privacy-text a:hover {
    color: #0dcaf0;
}

.privacy-notice .required-note {
    color: #ff4757;
    font-weight: bold;
    margin-left: 4px;
}

.privacy-notice .required-text {
    margin-top: 8px;
    text-align: center;
}

.privacy-notice .required-asterisk {
    color: #ff4757;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Blinking animation for checkbox */
@keyframes blink-attention {
    0%, 50%, 100% {
        border-color: #8b9bb4;
        box-shadow: none;
        background: transparent;
    }
    25%, 75% {
        border-color: #1fa5fd;
        box-shadow: 0 0 15px rgba(31, 165, 253, 0.8), 0 0 25px rgba(31, 165, 253, 0.6);
        background: rgba(31, 165, 253, 0.1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

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

@media screen and (max-width: 768px){
    .consultation-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .consultation-content {
        text-align: center;
    }
    .consultation-section{
            padding: 20px 0;
    }
}