/* style/resources-123win-platform-analysis.css */

/* Base styles for the specific page content */
.page-resources-123win-platform-analysis {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Container for content */
.page-resources-123win-platform-analysis__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-resources-123win-platform-analysis__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-123win-platform-analysis__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-resources-123win-platform-analysis__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* General Section Styling */
.page-resources-123win-platform-analysis__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-resources-123win-platform-analysis__section:last-of-type {
    border-bottom: none;
}

.page-resources-123win-platform-analysis__section-title {
    font-size: 2.2em;
    color: #007bff;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-resources-123win-platform-analysis__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-123win-platform-analysis__subsection-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #ffc107;
    padding-left: 15px;
}

/* Paragraphs */
.page-resources-123win-platform-analysis p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

/* Lists */
.page-resources-123win-platform-analysis__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-resources-123win-platform-analysis__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #555;
}

.page-resources-123win-platform-analysis__numbered-list {
    list-style: decimal inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-resources-123win-platform-analysis__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #555;
}

/* Buttons */
.page-resources-123win-platform-analysis__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-resources-123win-platform-analysis__btn--primary {
    background-color: #ffc107;
    color: #000000;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-resources-123win-platform-analysis__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
}

.page-resources-123win-platform-analysis__btn--secondary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-resources-123win-platform-analysis__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

/* Text Links */
.page-resources-123win-platform-analysis__text-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-123win-platform-analysis__text-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Image Styling */
.page-resources-123win-platform-analysis__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-resources-123win-platform-analysis__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-resources-123win-platform-analysis__image:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-123win-platform-analysis__hero-title {
        font-size: 2em;
    }

    .page-resources-123win-platform-analysis__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-123win-platform-analysis__section-title {
        font-size: 1.8em;
    }

    .page-resources-123win-platform-analysis__subsection-title {
        font-size: 1.5em;
    }

    .page-resources-123win-platform-analysis__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-resources-123win-platform-analysis__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-resources-123win-platform-analysis__hero-title {
        font-size: 1.6em;
    }

    .page-resources-123win-platform-analysis__hero-subtitle {
        font-size: 0.9em;
    }

    .page-resources-123win-platform-analysis__section-title {
        font-size: 1.5em;
    }

    .page-resources-123win-platform-analysis__subsection-title {
        font-size: 1.3em;
    }

    .page-resources-123win-platform-analysis__btn {
        padding: 8px 18px;
        font-size: 0.9em;
    }
}