/* Base Styles */
:root {
    --primary-color: #4285f4;
    --secondary-color: #34a853;
    --accent-color: #fbbc05;
    --warning-color: #ea4335;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --border-color: #e0e0e0;
    --text-color: #333333;
    --text-light: #757575;
    --card-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f4f4f4;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
.main-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
}

.main-nav a:hover {
    background-color: var(--light-color);
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section Styles */
.hero-section {
    background-color: #ffffff;
    padding: 5px 0;
}

.hero-banner {
    background-color: #fffbe5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-header {
    background-color: #ffeb99;
    padding: 10px;
    text-align: center;
}

.hero-header h1 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.hero-image {
    margin-bottom: 10px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
}

.post-image img {
    max-width: 100%;
    border-radius: 8px;
}

.hero-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-text p {
    margin-bottom: 10px;
}

.hero-text strong {
    color: #555;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.hero-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.hero-btn {
    background-color: #ffeb99;
    color: #333;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.hero-btn.download-btn {
    background-color: #4285f4;
    color: white;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffe066;
    text-decoration: none;
}

.hero-btn.download-btn:hover {
    background-color: #3367d6;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-btn:hover {
    opacity: 0.9;
    text-decoration: none;
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.telegram {
    background-color: #0088cc;
}

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

.linkedin {
    background-color: #0077b5;
}

.pinterest {
    background-color: #bd081c;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        gap: 30px;
    }
    
    .hero-image {
        flex: 1;
        margin-bottom: 0;
    }
    
    .hero-text {
        flex: 1;
    }
    
    .hero-header h1 {
        font-size: 1.8rem;
    }
}

/* Rewards Section Styles */
.rewards-section {
    padding: 10px 0;
    background-color: white;
}

.rewards-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--dark-color);
}

.rewards-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .rewards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }
}

.reward-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--border-color);
}

.reward-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reward-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.reward-icon img {
    max-width: 100%;
    max-height: 100%;
}

.reward-content {
    flex: 1;
}

.reward-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.reward-amount {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--dark-color);
}

.collect-btn {
    display: inline-block;
    padding: 8px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.collect-btn:hover {
    background-color: #3367d6;
    text-decoration: none;
}

.reward-time {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.reward-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    padding-top: 5px;
    margin-top: 5px;
}

/* SEO Content Styles */
.seo-content {
    padding: 60px 0;
    background-color: var(--light-color);
}

.seo-content h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--dark-color);
}

.seo-content h3 {
    margin-bottom: 25px;
    margin-top: 15px;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.content-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    padding: 25px;
    border: 1px solid var(--border-color);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* FAQ Section Styles */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    margin-bottom: 25px;
    text-align: center;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0; /* Changed from 10px to 0 */
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 20px; /* Space for the arrow */
}

.faq-item h3::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
}

.faq-item.active h3::after {
    transform: rotate(180deg);
}

.faq-item p {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    display: none; /* Hidden by default */
}

.faq-item.active p {
    display: block;
}

/* Page Content Styles */
.page-content {
    padding: 40px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 300px);
}

.page-header {
    background: linear-gradient(135deg, #fffbe5 0%, #fff8d6 100%);
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #ffeb99;
    position: relative;
}

.page-header:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffeb99, transparent);
}

.page-header h1 {
    margin: 0;
    color: var(--dark-color);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-box h2 {
    color: var(--primary-color);
    margin: 35px 0 20px;
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.content-box h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.content-box h2:first-child {
    margin-top: 0;
}

.content-box p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.content-box ul {
    margin: 25px 0;
    padding-left: 20px;
    list-style: none;
}

.content-box ul li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.content-box ul li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.content-box a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-box a:hover {
    border-bottom-color: var(--primary-color);
    text-decoration: none;
}

.content-meta {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #666;
    border-left: 4px solid var(--primary-color);
}

.content-meta p {
    margin: 0;
    font-style: italic;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #3367d6;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-box {
        padding: 25px;
    }
    
    .content-box h2 {
        font-size: 1.4rem;
    }
    
    .content-box p {
        font-size: 1rem;
    }

    .hero-buttons-row {
        justify-content: center;
        gap: 10px;
    }
    
    .hero-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #000;
    color: white;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo p {
    margin-top: 10px;
    opacity: 0.8;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-disclaimer p {
    margin-bottom: 5px;
}

.footer-disclaimer a {
    color: white;
}

/* Error Message Styles */
.error-message {
    background-color: #fee8e7;
    color: var(--warning-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #fdcccb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-message p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.refresh-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.refresh-btn i {
    font-size: 1rem;
}

.refresh-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-header .container {
        flex-wrap: wrap;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 15px;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        background-color: white;
        border-radius: 5px;
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav li {
        margin: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 10px 20px;
        border-radius: 0;
    }
    
    .main-nav a:hover {
        background-color: var(--light-color);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav a {
        padding: 5px 0;
    }
} 