/* Static Pages Styles - Privacy, Terms, Shipping, About */

.static-page {
    padding: 40px 0;
    background: #fff;
}

.static-page .page-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.static-page .page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #fff;
}

.static-page .page-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin: 0;
    font-weight: 300;
}

.static-page .page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.static-page .content-section {
    margin-bottom: 50px;
}

.static-page .content-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #667eea;
    display: inline-block;
}

.static-page .content-section h2 i {
    margin-right: 10px;
    color: #667eea;
}

.static-page .content-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #34495e;
    margin: 25px 0 15px 0;
}

.static-page .content-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #34495e;
    margin: 20px 0 10px 0;
}

.static-page .content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.static-page .content-section ul,
.static-page .content-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.static-page .content-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.static-page .lead {
    font-size: 18px;
    font-weight: 400;
    color: #34495e;
    line-height: 1.8;
}

/* Intro Box */
.intro-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin-bottom: 30px;
}

/* Info Box */
.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-box i {
    font-size: 24px;
    color: #2196f3;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box p {
    margin: 0;
    color: #0d47a1;
}

.info-box.success {
    background: #e8f5e9;
    border-left-color: #4caf50;
}

.info-box.success i {
    color: #4caf50;
}

.info-box.success p {
    color: #1b5e20;
}

/* Alert Box */
.alert-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.alert-box i {
    color: #ff9800;
    margin-right: 10px;
}

.alert-box h4 {
    color: #856404;
    margin-top: 0;
}

.alert-box p {
    color: #856404;
    margin-bottom: 0;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.usage-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.usage-item:hover {
    border-color: #667eea;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.usage-item i {
    font-size: 40px;
    color: #667eea;
    margin-bottom: 15px;
}

.usage-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 10px 0;
}

.usage-item p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 15px 0 10px 0;
}

.feature-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Shipping Methods */
.shipping-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.shipping-method {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.shipping-method:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.shipping-method .method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.shipping-method .method-icon i {
    font-size: 36px;
    color: #fff;
}

.shipping-method h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin: 15px 0 10px 0;
}

.shipping-method .delivery-time {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 15px;
}

.shipping-method ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.shipping-method ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.shipping-method ul li:last-child {
    border-bottom: none;
}

/* Timeline List */
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.timeline-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    border-left: 2px solid #667eea;
}

.timeline-list li:before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 14px;
    height: 14px;
    background: #667eea;
    border-radius: 50%;
    border: 3px solid #fff;
}

.timeline-list li:last-child {
    border-left-color: transparent;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefits-list li i {
    color: #4caf50;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.contact-box h3 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
}

.contact-box h3 i {
    margin-right: 10px;
}

.contact-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.contact-box .contact-info {
    margin: 25px 0;
}

.contact-box .contact-info p {
    font-size: 16px;
    margin: 10px 0;
    color: #fff;
}

.contact-box .contact-info strong {
    font-weight: 600;
}

.contact-box .btn {
    margin-top: 20px;
    background: #fff;
    color: #667eea;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
}

.contact-box .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Last Updated */
.last-updated {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 2px solid #e9ecef;
}

.last-updated p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.last-updated i {
    margin-right: 8px;
    color: #667eea;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.company-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.company-intro h2 i {
    color: #667eea;
    margin-right: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .static-page .page-header h1 {
        font-size: 32px;
    }
    
    .static-page .page-subtitle {
        font-size: 16px;
    }
    
    .static-page .content-section h2 {
        font-size: 24px;
    }
    
    .usage-grid,
    .features-grid,
    .shipping-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        padding: 30px 20px;
    }
    
    .hero-section {
        padding: 30px 20px;
    }
}
