/* Page-specific Styles */

/* Page Container */

.page-container {
    max-width: 900px !important;
    padding: 40px 20px !important;
}

.content-page {
    text-align: left;
}

.content-page h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.content-page h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000;
}

.content-page h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #000;
}

.content-page h4 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.content-page p {
    font-size: 1em;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
}

/* About Page */

.about-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.about-section:last-child {
    border-bottom: none;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.features-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1em;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #000;
    font-size: 1.2em;
}

/* CTA Section */

.cta-section {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
    text-align: center;
}

.cta-section h3 {
    margin-top: 0;
    font-size: 1.8em;
}

.cta-section p {
    font-size: 1.1em;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
}

/* Blog Page */

.blog-intro,
.faq-intro,
.contact-intro {
    font-size: 1.1em;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.blog-post {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-post:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.post-date {
    font-size: 0.85em;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-post h3 {
    font-size: 1.3em;
    margin: 0 0 15px 0;
    color: #000;
    line-height: 1.4;
}

.post-excerpt {
    font-size: 0.95em;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 15px !important;
}

.read-more {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    color: rgba(0, 0, 0, 0.6);
    transform: translateX(5px);
}

/* FAQ Page */

.faq-container {
    margin-bottom: 40px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #f9f9f9;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05em;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-item.active .faq-question {
    background: #000;
    color: #fff;
}

.faq-icon {
    font-weight: 300;
    font-size: 1.5em;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
}

.faq-answer a {
    color: #000;
    font-weight: 600;
}

/* Contact Page */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.contact-info h3 {
    margin-top: 0;
}

.info-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item h4 {
    margin: 0 0 8px 0;
    color: #000;
}

.info-item p {
    margin: 5px 0;
    font-weight: 500;
    font-size: 1em;
}

.info-item a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-item small {
    display: block;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.85em;
    margin-top: 3px;
}

.contact-form-wrapper h3 {
    margin-top: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    color: #000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-alternatives {
    margin-top: 50px;
}

.contact-alternatives h3 {
    text-align: center;
    margin-top: 0;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.alt-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.alt-item h4 {
    color: #000;
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.alt-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
}

/* Responsive */

@media (max-width: 768px) {
    .page-container {
        padding: 30px 15px !important;
    }

    .content-page h1 {
        font-size: 2em;
    }

    .content-page h2 {
        font-size: 1.5em;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .alternatives-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page-container {
        padding: 20px 15px !important;
    }

    .content-page h1 {
        font-size: 1.6em;
    }

    .content-page h2 {
        font-size: 1.3em;
    }

    .faq-question {
        padding: 15px;
        font-size: 1em;
    }

    .content-page p {
        font-size: 0.95em;
    }

    .cta-section {
        padding: 25px;
    }

    .contact-container {
        gap: 20px;
    }
}