/* Shipping Policy Styles */
:root {
    --primary: #0066cc;
    --primary-dark: #004d99;
    --secondary: #00a859;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --dark-text: #2d3748;
    --gray-text: #4a5568;
    --light-gray: #e2e8f0;
    --dark-blue: #0B1B2B;
}

/* Header Styles */
.policy-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.policy-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-nav .logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
}

.policy-nav .nav-links {
    display: flex;
    gap: 30px;
}

.policy-nav .nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-nav .nav-links a:hover {
    color: var(--primary);
}

/* Shipping Policy Main Content */
.shipping-policy {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.policy-header-content {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.policy-header-content .policy-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

.policy-content {
    background-color: var(--white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section p {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.notice-box {
    background-color: #fff8e6;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
    display: flex;
    gap: 15px;
}

.notice-box i {
    color: #ff9800;
    font-size: 1.2rem;
    margin-top: 3px;
}

.notice-box p {
    margin: 0;
}

/* Shipping Methods */
.shipping-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.method-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-gray);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.2rem;
}

.method-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.method-card ul {
    list-style-type: none;
}

.method-card ul li {
    padding: 5px 0;
    color: var(--gray-text);
    position: relative;
    padding-left: 20px;
}

.method-card ul li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Restrictions Grid */
.restrictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.restriction-item {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.restriction-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.restriction-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: var(--light-bg);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: var(--dark-text);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e6f2ff;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--white);
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
}

.faq-item.active .faq-question {
    background-color: #e6f2ff;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul,
.footer-legal ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--white);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.8;
}

.footer-contact i {
    margin-top: 3px;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom .disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-content {
        padding: 30px;
    }
    
    .policy-header-content h1 {
        font-size: 2rem;
    }
    
    .shipping-methods,
    .restrictions-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-nav {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 25px 20px;
    }
    
    .policy-header-content h1 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}