/* style/platform-reviews-platform-f-customer-service.css */

/* General Styles for the Page Content */
.page-platform-reviews-platform-f-customer-service {
    font-family: 'Arial', sans-serif;
    color: #0A2E36; /* Dark text for light backgrounds */
    line-height: 1.6;
}

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

.page-platform-reviews-platform-f-customer-service .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.page-platform-reviews-platform-f-customer-service .btn-primary {
    background-color: #E0B34C; /* Auxiliary color for primary action */
    color: #0A2E36; /* Dark text for contrast */
    border: 2px solid #E0B34C;
}

.page-platform-reviews-platform-f-customer-service .btn-primary:hover {
    background-color: #f0c35c;
    transform: translateY(-2px);
}

.page-platform-reviews-platform-f-customer-service .btn-secondary {
    background-color: transparent;
    color: #E0B34C;
    border: 2px solid #E0B34C;
}

.page-platform-reviews-platform-f-customer-service .btn-secondary:hover {
    background-color: rgba(224, 179, 76, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.page-platform-reviews-platform-f-customer-service .hero-section {
    background: linear-gradient(135deg, #0A2E36 0%, #1a4d5e 100%); /* Gradient from main color to a slightly lighter variant */
    color: #f8f8f8;
    padding: 100px 0;
    text-align: center;
}

.page-platform-reviews-platform-f-customer-service .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B34C; /* Auxiliary color for emphasis */
    line-height: 1.2;
}

.page-platform-reviews-platform-f-customer-service .hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Sections */
.page-platform-reviews-platform-f-customer-service .content-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-platform-reviews-platform-f-customer-service .content-section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-platform-reviews-platform-f-customer-service .section-title {
    font-size: 2.5em;
    color: #0A2E36;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-platform-reviews-platform-f-customer-service .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B34C;
    border-radius: 2px;
}

.page-platform-reviews-platform-f-customer-service .section-subtitle {
    font-size: 1.8em;
    color: #0A2E36;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-platform-reviews-platform-f-customer-service p {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #333;
}

.page-platform-reviews-platform-f-customer-service h3 {
    font-size: 1.5em;
    color: #0A2E36;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-platform-reviews-platform-f-customer-service h4 {
    font-size: 1.2em;
    color: #E0B34C;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-platform-reviews-platform-f-customer-service .styled-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-platform-reviews-platform-f-customer-service .styled-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.page-platform-reviews-platform-f-customer-service .styled-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #E0B34C;
}

.page-platform-reviews-platform-f-customer-service .grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-platform-reviews-platform-f-customer-service .grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-platform-reviews-platform-f-customer-service .grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-platform-reviews-platform-f-customer-service .grid-item-small {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-platform-reviews-platform-f-customer-service .grid-item h3 {
    color: #E0B34C;
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-platform-reviews-platform-f-customer-service .grid-item h4 {
    color: #0A2E36;
    font-size: 1.2em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-platform-reviews-platform-f-customer-service .section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-platform-reviews-platform-f-customer-service .section-image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
}

.page-platform-reviews-platform-f-customer-service .section-icon {
    display: block;
    margin: 0 auto 30px;
    width: 80px;
    height: auto;
}

.page-platform-reviews-platform-f-customer-service .cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Evaluation Blocks */
.page-platform-reviews-platform-f-customer-service .evaluation-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-platform-reviews-platform-f-customer-service .evaluation-block.reverse {
    flex-direction: row-reverse;
}

.page-platform-reviews-platform-f-customer-service .evaluation-image {
    flex: 0 0 40%;
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-platform-reviews-platform-f-customer-service .evaluation-text {
    flex: 1;
}

/* CTA Section */
.page-platform-reviews-platform-f-customer-service .cta-section {
    background-color: #0A2E36; /* Main brand color */
    color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
}

.page-platform-reviews-platform-f-customer-service .cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E0B34C;
}

.page-platform-reviews-platform-f-customer-service .cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-platform-reviews-platform-f-customer-service .cta-buttons .btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-platform-reviews-platform-f-customer-service .hero-title {
        font-size: 2.8em;
    }
    .page-platform-reviews-platform-f-customer-service .section-title {
        font-size: 2em;
    }
    .page-platform-reviews-platform-f-customer-service .evaluation-block {
        flex-direction: column;
        align-items: center;
    }
    .page-platform-reviews-platform-f-customer-service .evaluation-block.reverse {
        flex-direction: column;
    }
    .page-platform-reviews-platform-f-customer-service .evaluation-image {
        max-width: 80%;
        flex: none;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-platform-reviews-platform-f-customer-service .hero-title {
        font-size: 2.2em;
    }
    .page-platform-reviews-platform-f-customer-service .hero-subtitle {
        font-size: 1.1em;
    }
    .page-platform-reviews-platform-f-customer-service .section-title {
        font-size: 1.8em;
    }
    .page-platform-reviews-platform-f-customer-service .section-subtitle {
        font-size: 1.5em;
    }
    .page-platform-reviews-platform-f-customer-service .grid-2-cols,
    .page-platform-reviews-platform-f-customer-service .grid-3-cols {
        grid-template-columns: 1fr;
    }
    .page-platform-reviews-platform-f-customer-service .cta-buttons .btn {
        display: block;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .page-platform-reviews-platform-f-customer-service .hero-title {
        font-size: 1.8em;
    }
    .page-platform-reviews-platform-f-customer-service .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-platform-reviews-platform-f-customer-service p,
    .page-platform-reviews-platform-f-customer-service .styled-list li {
        font-size: 1em;
    }
}