.contact-hero {
    position: relative;
    background-image: url('../images/index/index_1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: 100vh;
    display: block;
    padding: 100px 20px 60px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(5px);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 25px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 48px;
    color: #f5e6d3;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.contact-hero-content p {
    font-size: 18px;
    color: #d4a855;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.policy-container {
    display: flex;
    justify-content: center;
    padding: 0 20px 60px;
}

.policy-card {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    border: 1px solid rgba(212, 168, 85, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.policy-header {
    background: linear-gradient(135deg, rgba(212, 168, 85, 0.15) 0%, rgba(196, 152, 69, 0.1) 100%);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 168, 85, 0.3);
}

.policy-icon {
    font-size: 48px;
    color: #d4a855;
    margin-bottom: 15px;
    display: block;
}

.policy-header h2 {
    font-size: 28px;
    color: #f5e6d3;
    margin-bottom: 8px;
    font-weight: 700;
}

.policy-subtitle {
    color: #aaa;
    font-size: 15px;
    font-style: italic;
}

.policy-list {
    padding: 30px;
}

.policy-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 168, 85, 0.15);
}

.policy-item:last-child {
    border-bottom: none;
}

.policy-item.warning {
    background: rgba(231, 76, 60, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    border-left: 3px solid #e74c3c;
}

.policy-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(212, 168, 85, 0.2);
    border: 1px solid rgba(212, 168, 85, 0.4);
    border-radius: 50%;
    color: #d4a855;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-item p {
    color: #f5e6d3;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.policy-item.warning p {
    color: #ffcccc;
}

.policy-item p strong {
    color: #d4a855;
    font-weight: 600;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #d4a855;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.phone-link:hover {
    color: #f5e6d3;
    transform: translateX(3px);
}

.policy-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(212, 168, 85, 0.2);
}

.policy-footer p {
    color: #aaa;
    margin: 5px 0;
    font-size: 14px;
}

.policy-footer .small {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 90px 15px 40px;
    }
    
    .contact-hero-content h1 {
        font-size: 36px;
    }
    
    .contact-hero-content p {
        font-size: 16px;
    }
    
    .policy-card {
        border-radius: 15px;
    }
    
    .policy-header {
        padding: 25px 20px;
    }
    
    .policy-icon {
        font-size: 40px;
    }
    
    .policy-header h2 {
        font-size: 24px;
    }
    
    .policy-list {
        padding: 25px 20px;
    }
    
    .policy-item {
        gap: 12px;
        padding: 12px 0;
    }
    
    .policy-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .policy-item p {
        font-size: 14px;
    }
    
    .policy-footer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 10px 30px;
    }
    
    .contact-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-hero-content p {
        font-size: 14px;
    }
    
    .policy-header {
        padding: 20px 15px;
    }
    
    .policy-icon {
        font-size: 36px;
    }
    
    .policy-header h2 {
        font-size: 20px;
    }
    
    .policy-subtitle {
        font-size: 13px;
    }
    
    .policy-list {
        padding: 20px 15px;
    }
    
    .policy-item {
        flex-direction: column;
        gap: 8px;
        padding: 10px 0;
    }
    
    .policy-number {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .policy-item p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .phone-link {
        font-size: 14px;
    }
    
    .policy-footer p {
        font-size: 13px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .contact-hero {
        min-height: 100vh;
        padding: 10px;
    }
    
    .contact-hero-content {
        gap: 15px;
    }
}