:root {
    --durawell-blue: #00a0d2;
    --durawell-blue-dark: #0086b3;
    --durawell-orange: #ffa724;
    --durawell-orange-dark: #e89200;
    --light-gray: #f5f5f5;
    --mid-gray: #e0e0e0;
    --dark-gray: #333333;
    --white: #ffffff;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="%230099cc" opacity="0.05"/><path d="M20 70 L70 20 L120 70 L70 120 Z" fill="%23ffa500" opacity="0.05"/><path d="M30 40 L40 30 L50 40 L40 50 Z" fill="%230099cc" opacity="0.03"/><path d="M60 70 L70 60 L80 70 L70 80 Z" fill="%23ffa500" opacity="0.03"/></svg>'),
    linear-gradient(170deg, rgba(0,153,204,0.05) 0%, rgba(255,165,0,0.05) 100%);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Logo Styling */
.brand-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.brand-logo img {
    max-width: 250px;
    height: auto;
}

/* FAQ Header Styling */
.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.faq-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, var(--durawell-blue) 0%, var(--durawell-blue) 50%, var(--durawell-orange) 50%, var(--durawell-orange) 100%);
    border-radius: 2px;
}

.faq-header h1 {
    color: var(--durawell-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.faq-header p {
    color: var(--dark-gray);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ List Styling */
.faq-list {
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--durawell-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item:nth-child(even) {
    border-left: 4px solid var(--durawell-orange);
}

.faq-question {
    background-color: var(--light-gray);
    padding: 1.2rem 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: #e9e9e9;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--durawell-orange);
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.question-text {
    flex-grow: 1;
    padding-right: 70px;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease;
    background-color: var(--white);
    border-top: 1px solid var(--mid-gray);
}

.faq-answer-content {
    padding: 1.5rem;
    line-height: 1.7;
}

.faq-answer-content a {
    color: var(--durawell-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.faq-answer-content a:hover {
    color: var(--durawell-blue-dark);
    text-decoration: underline;
}

/* Active FAQ Item */
.faq-item.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--durawell-blue) 0%, var(--durawell-blue-dark) 100%);
    color: var(--white);
}

.faq-item:nth-child(even).active .faq-question {
    background: linear-gradient(135deg, var(--durawell-orange) 0%, var(--durawell-orange-dark) 100%);
}

.faq-item.active .faq-question::after {
    content: '−';
    color: var(--white);
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0;
}

/* Product Tag Styling */
.product-tag {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, var(--durawell-orange) 0%, var(--durawell-orange-dark) 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(232, 146, 0, 0.3);
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Contact Section Styling */
.contact-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e6f7ff 100%);
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-top: 4rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid var(--durawell-blue);
}

.contact-section h2 {
    color: var(--durawell-blue);
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.contact-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--durawell-orange);
    border-radius: 1.5px;
}

.contact-section p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(to right, var(--durawell-orange) 0%, var(--durawell-orange-dark) 100%);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 167, 36, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.contact-button:hover {
    background: linear-gradient(to right, var(--durawell-orange-dark) 0%, var(--durawell-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 167, 36, 0.4);
}

.contact-button:active {
    transform: translateY(-1px);
}

/* Media Queries */
@media (max-width: 1024px) {
    .container {
        padding: 1.5rem;
    }
    
    .faq-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .faq-header h1 {
        font-size: 2rem;
    }
    
    .product-tag {
        right: 40px;
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .contact-button {
        padding: 0.8rem 1.8rem;
    }
}

@media (max-width: 576px) {
    .product-tag {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        display: inline-block;
        margin-top: 8px;
        margin-bottom: 5px;
    }
    
    .question-text {
        padding-right: 0;
        width: 100%;
    }
    
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-question::after {
        position: absolute;
        right: 15px;
        top: 15px;
    }
}

@media (max-width: 480px) {
    .faq-header h1 {
        font-size: 1.8rem;
    }
    
    .faq-header p {
        font-size: 1rem;
    }
    
    .product-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.7rem;
    }
    
    .faq-question {
        padding: 0.8rem 1rem;
    }
    
    .faq-question::after {
        font-size: 1.5rem;
        top: 12px;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
}