* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
.pamphlet-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #e53935 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.pamphlet-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,197.3C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5%);
    }

    100% {
        transform: translateX(0);
    }
}

.pamphlet-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

.pamphlet-header .subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.breadcrumb {
    position: relative;
    margin-top: 10px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.pamphlet-header a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.3s;
}

.pamphlet-header a:hover {
    opacity: 1;
}

.pamphlet-header a i {
    margin-right: 5px;
}

/* FAQ Content Styles */
.faq-container {
    padding: 40px 0;
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px 20px;
}

.audit-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 20px;
    border-left: 6px solid #1a237e;
    position: relative;
    overflow: hidden;
}

.audit-section h2 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 26px;
    display: block;
}

.audit-section h2 i {
    color: #e53935;
    margin-right: 12px;
}

.audit-section p {
    line-height: 1.7;
    color: #444;
    font-size: 17px;
}

.certification-badge {
    text-align: center;
    margin: 10px 0;
}

.badge {
    display: inline-block;
    background: white;
    padding: 18px 28px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    margin: 0 15px 15px;
    font-weight: 600;
    color: #1a237e;
    transition: all 0.4s;
    border: 1px solid rgba(26, 35, 126, 0.1);
}

.badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(229, 57, 53, 0.3);
}

.badge i {
    color: #e53935;
    font-size: 26px;
    margin-right: 12px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a237e;
    font-size: 36px;
    position: relative;
    font-weight: 700;
}

.faq-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #1a237e, #e53935);
    border-radius: 3px;
}

.faq-list {
    width: 100%;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border-left: 5px solid #1a237e;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-left-color: #e53935;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: block;
    background: transparent;
    transition: background 0.3s;
    position: relative;
}

.faq-question:hover {
    background: rgba(248, 249, 250, 0.7);
}

.faq-question h3 {
    margin: 0;
    font-size: 20px;
    color: #1a237e;
    font-weight: 600;
    display: inline-block;
    width: 85%;
    vertical-align: middle;
}

.faq-question h3::before {
    content: "Q: ";
    color: #e53935;
    font-weight: 700;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a237e;
    color: white;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    transition: all 0.4s;
    float: right;
    box-shadow: 0 3px 8px rgba(26, 35, 126, 0.3);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    color: #555;
    line-height: 1.7;
    position: relative;
}

.faq-answer::before {
    content: "A: ";
    position: absolute;
    left: 30px;
    top: 20px;
    font-weight: 700;
    color: #1a237e;
}

.faq-item.active .faq-answer {
    padding: 25px 30px 25px 50px;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    background: #e53935;
    transform: rotate(180deg);
}

.contact-cta {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    text-align: center;
    padding: 20px 20px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.contact-cta h3 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: #e53935;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    box-shadow: 0 5px 18px rgba(229, 57, 53, 0.4);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: #c62828;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.5);
}

@media (max-width: 768px) {
    .audit-section {
        padding: 25px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 18px;
        width: 80%;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 20px 20px 20px 40px;
    }

    .faq-answer::before {
        left: 20px;
    }

    .badge {
        display: block;
        margin: 0 auto 15px;
        width: 80%;
    }
}