.page-platform-reviews-platform-f {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-platform-reviews-platform-f .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-platform-reviews-platform-f .hero-section {
    background: linear-gradient(135deg, #0A6847, #2c8c5c); /* Gradient from main color to a lighter green */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-platform-reviews-platform-f .hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-platform-reviews-platform-f .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.page-platform-reviews-platform-f .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1em;
}

.page-platform-reviews-platform-f .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A6847; /* Deep green text on gold */
    border: 2px solid #FFD700;
}

.page-platform-reviews-platform-f .btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-2px);
}

.page-platform-reviews-platform-f .btn-secondary {
    background-color: #0A6847; /* Deep green */
    color: #FFD700; /* Gold text on deep green */
    border: 2px solid #0A6847;
    margin-left: 15px;
}

.page-platform-reviews-platform-f .btn-secondary:hover {
    background-color: #08553a; /* Darker deep green */
    transform: translateY(-2px);
}

.page-platform-reviews-platform-f .content-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-platform-reviews-platform-f .content-section:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.page-platform-reviews-platform-f .content-section h2 {
    font-size: 2.2em;
    color: #0A6847; /* Deep green for main headings */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-platform-reviews-platform-f .content-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-platform-reviews-platform-f .content-section h3 {
    font-size: 1.6em;
    color: #0A6847; /* Deep green for subheadings */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-platform-reviews-platform-f .content-section p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-platform-reviews-platform-f .content-section ul,
.page-platform-reviews-platform-f .content-section ol {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-platform-reviews-platform-f .content-section ul li,
.page-platform-reviews-platform-f .content-section ol li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-platform-reviews-platform-f .img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-platform-reviews-platform-f .grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.page-platform-reviews-platform-f .card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-platform-reviews-platform-f .card-pros h3 {
    color: #0A6847; /* Deep green */
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.page-platform-reviews-platform-f .card-pros ul li {
    color: #0A6847; /* Deep green for pros list items */
    font-weight: bold;
}

.page-platform-reviews-platform-f .card-cons h3 {
    color: #D9534F; /* A soft red for cons */
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.page-platform-reviews-platform-f .card-cons ul li {
    color: #D9534F; /* Soft red for cons list items */
}

.page-platform-reviews-platform-f .review-card {
    background-color: #f0f7f4; /* Lighter green background for reviews */
    border-left: 5px solid #0A6847; /* Deep green border */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-style: italic;
}

.page-platform-reviews-platform-f .review-card p:first-child {
    font-size: 1.1em;
    color: #222;
}

.page-platform-reviews-platform-f .review-card p:last-child {
    text-align: right;
    font-weight: bold;
    color: #0A6847;
    margin-top: 15px;
}

.page-platform-reviews-platform-f .faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.page-platform-reviews-platform-f .faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-platform-reviews-platform-f .faq-item h3 {
    color: #0A6847; /* Deep green */
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-platform-reviews-platform-f .faq-item p {
    color: #555;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-platform-reviews-platform-f .hero-section h1 {
        font-size: 2.2em;
    }

    .page-platform-reviews-platform-f .hero-section p {
        font-size: 1em;
    }

    .page-platform-reviews-platform-f .content-section h2 {
        font-size: 1.8em;
    }

    .page-platform-reviews-platform-f .content-section h3 {
        font-size: 1.4em;
    }

    .page-platform-reviews-platform-f .grid-2-cols {
        grid-template-columns: 1fr;
    }

    .page-platform-reviews-platform-f .btn {
        padding: 10px 20px;
        font-size: 0.9em;
        margin-left: 0;
        margin-top: 10px;
    }

    .page-platform-reviews-platform-f .btn-secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-platform-reviews-platform-f .hero-section h1 {
        font-size: 1.8em;
    }

    .page-platform-reviews-platform-f .hero-section p {
        font-size: 0.9em;
    }

    .page-platform-reviews-platform-f .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .page-platform-reviews-platform-f .btn-secondary {
        margin-top: 0;
    }
}