/* Main Content */
.hardd-refund-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Hero Section */
.hardd-refund-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
}

.hardd-refund-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hardd-refund-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Policy Sections */
.hardd-policy-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.hardd-policy-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hardd-policy-section h2 i {
    color: #667eea;
}

.hardd-policy-description {
    text-align: justify;
    line-height: 1.8;
    color: #555;
}

/* Policy Points List */
.hardd-policy-points {
    list-style-type: none;
    padding: 0;
}

.hardd-policy-points li {
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hardd-policy-points li i {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-top: 3px;
}

.hardd-policy-points li i.hardd-non-returnable {
    color: #ff4757;
}

/* Policy Tables */
.hardd-policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.hardd-policy-table th {
    background: #667eea;
    color: white;
    padding: 15px;
    text-align: left;
}

.hardd-policy-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.hardd-policy-table tr:hover {
    background: #f8f9fa;
}

/* Timeline */
.hardd-timeline-container {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
}

.hardd-timeline-container:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #667eea;
}

.hardd-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.hardd-timeline-item:before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #667eea;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #667eea;
}

.hardd-timeline-date {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 5px;
}

.hardd-timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Refund Methods Grid */
.hardd-refund-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.hardd-method-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.hardd-method-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Comparison Grid */
.hardd-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.hardd-return-card {
    background: #e3f2fd;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2196F3;
}

.hardd-warranty-card {
    background: #f3e5f5;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #9C27B0;
}

.hardd-return-card h3,
.hardd-warranty-card h3 {
    margin-bottom: 15px;
}

.hardd-return-card h3 {
    color: #2196F3;
}

.hardd-warranty-card h3 {
    color: #9C27B0;
}

.hardd-comparison-list {
    list-style-type: none;
    padding: 0;
}

.hardd-comparison-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

.hardd-comparison-list li:last-child {
    border-bottom: none;
}

/* Warning Box */
.hardd-warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.hardd-warning-box h4 {
    color: #856404;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hardd-warning-content {
    margin: 0;
    color: #856404;
}

/* Contact Section */
.hardd-contact-refund {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.hardd-contact-refund h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.hardd-contact-text {
    max-width: 800px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.hardd-refund-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hardd-refund-btn {
    padding: 15px 30px;
    background: white;
    color: #333;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hardd-refund-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hardd-refund-btn.hardd-primary {
    background: #00ccff;
    color: white;
}

.hardd-refund-btn.hardd-secondary {
    background: #25D366;
    color: white;
}

.hardd-support-hours {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Policy Update */
.hardd-policy-update {
    margin-top: 15px;
    color: #667eea;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Print Button */
.hardd-print-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hardd-print-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Pro Tip */
.hardd-pro-tip {
    margin-top: 20px;
    color: #666;
    font-style: italic;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hardd-pro-tip a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
}

.hardd-pro-tip a:hover {
    text-decoration: underline;
}

/* Animation */
@keyframes hardd-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hardd-policy-section.hardd-highlight {
    animation: hardd-fadeIn 0.5s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hardd-refund-hero h1 {
        font-size: 2rem;
    }
    
    .hardd-refund-hero p {
        font-size: 1rem;
    }
    
    .hardd-policy-section {
        padding: 20px;
    }
    
    .hardd-policy-table {
        font-size: 0.9rem;
    }
    
    .hardd-policy-table th,
    .hardd-policy-table td {
        padding: 10px;
    }
    
    .hardd-refund-buttons {
        flex-direction: column;
    }
    
    .hardd-refund-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hardd-refund-methods-grid,
    .hardd-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .hardd-print-btn {
        bottom: 80px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hardd-refund-hero {
        padding: 60px 15px;
    }
    
    .hardd-policy-section h2 {
        font-size: 1.5rem;
    }
    
    .hardd-timeline-container {
        padding-left: 20px;
    }
    
    .hardd-timeline-item {
        padding-left: 20px;
    }
    
    .hardd-timeline-item:before {
        left: -26px;
    }
}