/* Global layout and typography */
:root {
    --brand-blue: #477793;
    --accent-orange: #ff6600;
    --border-blue: #0066cc;
    --text-color: #404040;
    --bg-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Montserrat, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--bg-color);
    min-height: 100vh;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Flyer shell */
.flyer {
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 20px;
}

.logo {
    position: relative;
    margin-bottom: 0;
}

.logo img {
    width: 163px;
    height: 159px;
    margin: 0;
    display: block;
}

.title {
    font-size: 6rem;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    font-weight: bold;
    font-family: Montserrat, Arial, sans-serif;
}

.title-save {
    color: var(--brand-blue);
}

.title-hiia {
    color: var(--accent-orange);
}

/* Your Voice Matters Title */
.voice-matters-title {
    font-size: 2.67rem;
    color: var(--accent-orange);
    text-align: center;
    padding: 30px 20px;
    background: white;
    font-family: Montserrat, Arial, sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #5a8fb5 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.67rem;
    color: white;
    margin-bottom: 15px;
    font-family: Montserrat, Arial, sans-serif;
}

.hero-message {
    font-family: Arial, sans-serif;
    font-size: 1.17rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.hero-message p {
    margin-bottom: 12px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    padding: 25px 30px;
    justify-content: center;
    flex-wrap: wrap;
    background: #f9f9f9;
}

.btn {
    padding: 12px 24px;
    border: 2px solid;
    border-radius: 6px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 1.17rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

.btn-primary:hover {
    background-color: #ff8533;
    border-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: white;
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.btn-secondary:hover {
    background-color: var(--brand-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #e0e0e0;
    color: #666;
    border-color: #e0e0e0;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-with-tag {
    position: relative;
    display: inline-block;
}

.coming-soon-tag {
    position: absolute;
    top: -12px;
    right: 0;
    background-color: #ff6600;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    white-space: nowrap;
}

.social-btn-wrapper {
    position: relative;
    display: inline-block;
}

.coming-soon-tag-social {
    position: absolute;
    top: -12px;
    right: 0;
    background-color: #ff6600;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    white-space: nowrap;
}

/* Content Sections */
.content-section {
    padding: 0;
}

/* Two Column Section */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.column-left, .column-right {
    padding: 30px;
    background: #f9f9f9;
}

.section-column {
    padding: 0 !important;
}

.section {
    padding: 30px;
}

.section > p:first-child {
    font-size: 1.25rem;
    color: var(--brand-blue);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
    font-family: Montserrat, Arial, sans-serif;
}

.section h2 {
    color: var(--brand-blue);
    font-size: 1.67rem;
    margin-bottom: 20px;
    text-align: center;
    font-family: Montserrat, Arial, sans-serif;
}

.section-content {
    font-family: Arial, sans-serif;
    font-size: 1.17rem;
    text-align: center;
    line-height: 1.6;
}

.section-content p {
    margin-bottom: 12px;
}

.collapsible-section {
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
}

.collapsible-header {
    width: 100%;
    padding: 20px 30px;
    background-color: #f0f0f0;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.33rem;
    font-weight: bold;
    color: var(--brand-blue);
    font-family: Montserrat, Arial, sans-serif;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid var(--accent-orange);
}

.collapsible-header:hover {
    background-color: #e0e0e0;
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.collapsible-header.active .toggle-icon {
    transform: rotate(90deg);
}

.collapsible-content {
    display: none;
    padding: 20px 30px;
    background-color: #fafafa;
}

.collapsible-content.active {
    display: block;
}



/* Template Styling */
.template {
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-left: 4px solid var(--accent-orange);
    border-radius: 4px;
}

.template h4 {
    color: var(--brand-blue);
    margin-bottom: 10px;
    font-family: Montserrat, Arial, sans-serif;
}

.template-text {
    font-family: Arial, sans-serif;
    font-size: 1.08rem;
    line-height: 1.6;
    color: #333;
}

.template-text p {
    margin-bottom: 16px;
}

.template-preview {
    font-family: Arial, sans-serif;
    font-size: 1.08rem;
    line-height: 1.6;
    color: #333;
}

.template-preview p {
    margin-bottom: 16px;
}

.template-full {
    display: none;
}

.expand-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
}

.expand-btn:hover {
    background-color: #5a8fb5;
}

.copy-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.copy-btn:hover {
    background-color: #ff8533;
}

/* Tips Section Styling */
.tips-section {
    margin-bottom: 20px;
}

.tips-section h4 {
    color: var(--brand-blue);
    font-size: 1.33rem;
    font-weight: bold;
    font-family: Montserrat, Arial, sans-serif;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 10px;
}

/* Tips List */
.tips-list {
    list-style: none;
    list-style-position: inside;
    margin: 0;
    margin-left: 1em;
}

.tips-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 1.08rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 1.17rem;
    line-height: 1.6;
    color: #333;
}

.tips-list li::before {
    content: "•";
    color: var(--accent-orange);
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Contact Section */
.section-column {
    padding: 30px !important;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-column h2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent-orange);
}

.contact-section {
    margin-top: 0;
}

.contact-item {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.icon {
    font-size: 16pt;
    margin-right: 5px;
}

.role {
    color: #333333;
    font-size: 1rem;
    font-family: Arial, sans-serif;
}

.name {
    color: var(--brand-blue);
    font-size: 1.17rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
    margin: 5px 0;
}

.email {
    color: #333333;
    font-size: 1.08rem;
    font-family: Arial, sans-serif;
}

.email a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: bold;
}

.email a:hover {
    text-decoration: underline;
}

/* Resources Section */
.resources-section {
    background-color: #f9f9f9;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.resource-item {
    background: white;
    padding: 20px;
    text-align: center;
    border: 2px solid var(--border-blue);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 36pt;
    margin-bottom: 10px;
}

.resource-item h3 {
    color: var(--brand-blue);
    font-size: 1.33rem;
    margin-bottom: 8px;
    font-family: Montserrat, Arial, sans-serif;
}

.resource-item p {
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 1.08rem;
    margin-bottom: 15px;
}

/* Social Section */
.social-section {
    background-color: #f0f5ff;
}

.social-section p {
    font-family: Arial, sans-serif;
    font-size: 14pt;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.social-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: Arial, sans-serif;
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.social-btn.facebook {
    background-color: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-btn.twitter {
    background-color: #000000;
}

.social-btn.whatsapp {
    background-color: #25d366;
}

.social-btn.email {
    background-color: var(--accent-orange);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hashtag Banner */
.hashtag-banner {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8533 100%);
    color: white;
    padding: 20px 30px;
    text-align: center;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 1.33rem;
    font-weight: bold;
    font-family: Montserrat, Arial, sans-serif;
}

.hashtag {
    font-size: 1.67rem;
    font-weight: bold;
    display: block;
    margin-top: 8px;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
    }

    .title {
        font-size: 4rem;
    }

    .logo img {
        width: 130px;
        height: 127px;
    }

    .two-column-section {
        grid-template-columns: 1fr;
    }

    .column-right {
        border-left: none;
        border-top: 1px solid #eee;
    }

    .hero {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.33rem;
    }

    .hero-message {
        font-size: 1rem;
    }

    .action-buttons {
        flex-direction: column;
        padding: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 20px;
    }

    .section h2 {
        font-size: 18pt;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        margin-bottom: 15px;
    }

    .social-buttons {
        gap: 8px;
    }

    .social-btn {
        padding: 8px 16px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 15px;
    }

    .logo img {
        width: 100px;
        height: 97px;
    }

    .title {
        font-size: 28pt;
        gap: 5px;
    }

    .hero-title {
        font-size: 20pt;
    }

    .collapsible-header {
        padding: 15px 20px;
        font-size: 1.17rem;
    }

    .template {
        padding: 12px;
    }

    .contact-item {
        margin-bottom: 12px;
    }
}
