/* style/user-experience-sharing-tips-from-pros.css */
.page-user-experience-sharing-tips-from-pros {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Adjusted for better contrast on dark backgrounds */
    background-color: #0A2342; /* Main dark background */
}

.page-user-experience-sharing-tips-from-pros .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-user-experience-sharing-tips-from-pros .hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #2a4a75 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for main title */
}

.page-user-experience-sharing-tips-from-pros .hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-user-experience-sharing-tips-from-pros .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-user-experience-sharing-tips-from-pros .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-user-experience-sharing-tips-from-pros .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A2342; /* Dark blue */
}

.page-user-experience-sharing-tips-from-pros .btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-2px);
}

.page-user-experience-sharing-tips-from-pros .btn-secondary {
    background-color: #0A2342; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-user-experience-sharing-tips-from-pros .btn-secondary:hover {
    background-color: #1a3c6b; /* Lighter dark blue */
    transform: translateY(-2px);
}

.page-user-experience-sharing-tips-from-pros .btn-lg {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-user-experience-sharing-tips-from-pros .content-section {
    padding: 60px 0;
    background-color: #1a3c6b; /* Slightly lighter dark blue for content */
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-user-experience-sharing-tips-from-pros .content-section:nth-child(even) {
    background-color: #0A2342; /* Alternating dark blue for sections */
}

.page-user-experience-sharing-tips-from-pros h2 {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 15px;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.page-user-experience-sharing-tips-from-pros h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-user-experience-sharing-tips-from-pros p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-user-experience-sharing-tips-from-pros ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-user-experience-sharing-tips-from-pros ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.6;
}

.page-user-experience-sharing-tips-from-pros strong {
    color: #FFD700; /* Gold for strong text */
}

.page-user-experience-sharing-tips-from-pros .highlight-keyword {
    color: #FFD700;
    font-weight: bold;
}

.page-user-experience-sharing-tips-from-pros .article-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-user-experience-sharing-tips-from-pros .article-image.right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    width: 40%;
    min-width: 300px; /* Ensure image is not too small on desktop */
}

.page-user-experience-sharing-tips-from-pros .cta-section {
    background-color: #FFD700; /* Gold background for CTA */
    padding: 80px 0;
    text-align: center;
    color: #0A2342; /* Dark blue text on gold background */
    margin-top: 40px;
    border-radius: 8px;
}

.page-user-experience-sharing-tips-from-pros .cta-section h2 {
    color: #0A2342;
    border-bottom-color: #0A2342;
}

.page-user-experience-sharing-tips-from-pros .cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #0A2342;
}

.page-user-experience-sharing-tips-from-pros .cta-section .btn-primary, 
.page-user-experience-sharing-tips-from-pros .cta-section .btn-secondary {
    background-color: #0A2342; /* Dark blue buttons on gold CTA */
    color: #FFD700;
    border: none;
    margin: 0 10px;
}

.page-user-experience-sharing-tips-from-pros .cta-section .btn-primary:hover, 
.page-user-experience-sharing-tips-from-pros .cta-section .btn-secondary:hover {
    background-color: #1a3c6b;
    color: #FFD700;
}

.page-user-experience-sharing-tips-from-pros .faq-section {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-user-experience-sharing-tips-from-pros .faq-item {
    background-color: #1a3c6b;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-user-experience-sharing-tips-from-pros .faq-item h3 {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
    border-left: none;
    padding-left: 0;
    font-size: 1.5em;
}

.page-user-experience-sharing-tips-from-pros .faq-item p {
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-user-experience-sharing-tips-from-pros .hero-section h1 {
        font-size: 2.8em;
    }
    .page-user-experience-sharing-tips-from-pros h2 {
        font-size: 2em;
    }
    .page-user-experience-sharing-tips-from-pros h3 {
        font-size: 1.5em;
    }
    .page-user-experience-sharing-tips-from-pros .article-image.right {
        float: none;
        margin: 30px auto;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .page-user-experience-sharing-tips-from-pros .hero-section {
        padding: 80px 0 60px;
    }
    .page-user-experience-sharing-tips-from-pros .hero-section h1 {
        font-size: 2.2em;
    }
    .page-user-experience-sharing-tips-from-pros .hero-section p {
        font-size: 1em;
    }
    .page-user-experience-sharing-tips-from-pros .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-user-experience-sharing-tips-from-pros .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-user-experience-sharing-tips-from-pros .btn-lg {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-user-experience-sharing-tips-from-pros .content-section {
        padding: 40px 0;
    }
    .page-user-experience-sharing-tips-from-pros h2 {
        font-size: 1.8em;
    }
    .page-user-experience-sharing-tips-from-pros h3 {
        font-size: 1.3em;
    }
    .page-user-experience-sharing-tips-from-pros p, 
    .page-user-experience-sharing-tips-from-pros ul li {
        font-size: 0.95em;
    }
    .page-user-experience-sharing-tips-from-pros .cta-section {
        padding: 60px 0;
    }
    .page-user-experience-sharing-tips-from-pros .cta-section p {
        font-size: 1.1em;
    }
    .page-user-experience-sharing-tips-from-pros .cta-section .btn-primary, 
    .page-user-experience-sharing-tips-from-pros .cta-section .btn-secondary {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-user-experience-sharing-tips-from-pros .hero-section h1 {
        font-size: 1.8em;
    }
    .page-user-experience-sharing-tips-from-pros h2 {
        font-size: 1.5em;
    }
    .page-user-experience-sharing-tips-from-pros h3 {
        font-size: 1.2em;
    }
    .page-user-experience-sharing-tips-from-pros .article-image.right {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
}