/* Mailchimp E-Book Styles */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, rgb(31, 224, 199) 0%, rgb(20, 180, 160) 100%);
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: bold;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    border: 5px solid rgb(208, 31, 224);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, rgb(208, 31, 224) 0%, rgb(180, 20, 200) 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    border-bottom: 5px solid rgb(31, 224, 199);
    position: relative;
}

header h1 {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0.95;
}

.print-btn {
    background-color: rgb(31, 224, 199);
    color: #1a1a1a;
    border: 3px solid white;
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.print-btn:hover {
    background-color: white;
    color: rgb(208, 31, 224);
    border-color: rgb(31, 224, 199);
    transform: scale(1.05);
}

/* Navigation Styles */
.navigation {
    background-color: rgb(31, 224, 199);
    padding: 30px;
    border-bottom: 5px solid rgb(208, 31, 224);
}

.navigation h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.nav-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.nav-list li {
    margin: 0;
}

.nav-btn {
    width: 100%;
    background-color: white;
    color: #1a1a1a;
    border: 3px solid rgb(208, 31, 224);
    padding: 15px 20px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.nav-btn:hover {
    background-color: rgb(208, 31, 224);
    color: white;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section {
    padding: 40px 30px;
    border-bottom: 3px solid rgb(31, 224, 199);
}

.section:last-of-type {
    border-bottom: none;
}

.section h2 {
    font-size: 2.2em;
    font-weight: bold;
    color: rgb(208, 31, 224);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 4px solid rgb(31, 224, 199);
}

.content-box {
    background-color: rgba(31, 224, 199, 0.1);
    border: 3px solid rgb(208, 31, 224);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
}

.content-box h3 {
    font-size: 1.6em;
    font-weight: bold;
    color: rgb(208, 31, 224);
    margin: 25px 0 15px 0;
}

.content-box h3:first-child {
    margin-top: 0;
}

.content-box p {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #2a2a2a;
}

.content-box ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.content-box ul li {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 12px;
    padding-left: 10px;
    color: #2a2a2a;
}

.bullet {
    color: rgb(208, 31, 224);
    font-weight: bold;
    font-size: 1.3em;
    margin-right: 8px;
}

/* Table Styles */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
    border: 3px solid rgb(208, 31, 224);
    border-radius: 8px;
    overflow: hidden;
}

.info-table thead {
    background: linear-gradient(135deg, rgb(208, 31, 224) 0%, rgb(180, 20, 200) 100%);
    color: white;
}

.info-table th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 1.1em;
    border-bottom: 3px solid rgb(31, 224, 199);
}

.info-table td {
    padding: 15px;
    border-bottom: 2px solid rgb(31, 224, 199);
    font-weight: bold;
    font-size: 1.05em;
    color: #2a2a2a;
}

.info-table tbody tr:nth-child(even) {
    background-color: rgba(31, 224, 199, 0.15);
}

.info-table tbody tr:hover {
    background-color: rgba(208, 31, 224, 0.1);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

/* Flowchart Styles */
.flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    background-color: white;
    border: 3px solid rgb(208, 31, 224);
    border-radius: 10px;
}

.flow-step {
    background-color: rgb(31, 224, 199);
    border: 3px solid rgb(208, 31, 224);
    padding: 20px 30px;
    margin: 10px 0;
    border-radius: 10px;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.flow-step.start,
.flow-step.end {
    background: linear-gradient(135deg, rgb(208, 31, 224) 0%, rgb(180, 20, 200) 100%);
    color: white;
    font-size: 1.2em;
    border-radius: 50px;
}

.flow-step.decision {
    background-color: #ffd700;
    border-color: rgb(208, 31, 224);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    padding: 30px 40px;
    min-width: 250px;
}

.flow-step strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 5px;
    color: inherit;
}

.flow-step small {
    display: block;
    font-size: 0.9em;
    margin-top: 5px;
    font-weight: bold;
    opacity: 0.8;
}

.flow-arrow {
    font-size: 2em;
    font-weight: bold;
    color: rgb(208, 31, 224);
    margin: 5px 0;
}

.flow-branches {
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 100%;
    margin: 20px 0;
}

.flow-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 20px;
    border: 3px solid rgb(208, 31, 224);
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}

.faq-question {
    width: 100%;
    background-color: rgb(31, 224, 199);
    color: #1a1a1a;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgb(20, 200, 180);
}

.toggle-icon {
    font-size: 1.5em;
    font-weight: bold;
    color: rgb(208, 31, 224);
    transition: transform 0.3s ease;
}

.faq-question.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 20px;
    background-color: rgba(31, 224, 199, 0.05);
}

.faq-answer.active {
    max-height: 2000px;
    padding: 20px;
}

.faq-answer strong {
    font-size: 1.15em;
    color: rgb(208, 31, 224);
    display: block;
    margin-bottom: 10px;
}

.faq-answer ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.faq-answer ul li {
    font-size: 1.05em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.faq-answer p {
    font-size: 1.05em;
    font-weight: bold;
    margin: 15px 0;
    color: #2a2a2a;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, rgb(208, 31, 224) 0%, rgb(180, 20, 200) 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    border-top: 5px solid rgb(31, 224, 199);
}

footer p {
    font-size: 1.1em;
    font-weight: bold;
    margin: 10px 0;
}

footer em {
    font-style: italic;
    font-weight: bold;
    opacity: 0.9;
}

/* Print Styles */
@media print {
    body {
        background: white;
        padding: 0;
    }

    .container {
        border: 2px solid #000;
        box-shadow: none;
    }

    .print-btn,
    .navigation {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }

    .faq-answer {
        max-height: none !important;
        padding: 20px !important;
    }

    .flow-step.decision {
        clip-path: none;
        border-radius: 10px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .navigation h2 {
        font-size: 1.6em;
    }

    .nav-list {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 30px 20px;
    }

    .section h2 {
        font-size: 1.8em;
    }

    .content-box {
        padding: 20px;
    }

    .content-box h3 {
        font-size: 1.4em;
    }

    .info-table {
        font-size: 0.9em;
    }

    .info-table th,
    .info-table td {
        padding: 10px;
    }

    .flow-step {
        min-width: 250px;
        font-size: 1em;
    }

    .flow-branches {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6em;
    }

    .subtitle {
        font-size: 1em;
    }

    .section h2 {
        font-size: 1.5em;
    }

    .content-box h3 {
        font-size: 1.2em;
    }

    .flow-step {
        min-width: 200px;
        padding: 15px 20px;
    }
}