@charset "UTF-8";
 body.page-template-template-sss .site-content,
body.page-template-template-sss .site-content .ast-container,
body.page-template-template-sss #primary {
max-width: 100% !important;
padding: 0 !important;
margin: 0 !important;
width: 100% !important;
float: none !important;
}
body.page-template-template-sss #page,
body.page-template-template-sss .site-content {
overflow: visible !important;
overflow-x: visible !important;
overflow-y: visible !important;
}
body.page-template-template-sss #secondary {
display: none !important;
}
.pgm-sss-page {
width: 100%;
background: #ffffff;
}
.pgm-sss-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} .pgm-sss-hero {
position: relative;
height: 30vh;
min-height: 220px;
max-height: 350px;
display: flex;
align-items: center;
overflow: hidden;
margin-top: -1px;
}
.pgm-sss-hero-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-color: var(--pgm-dark);
z-index: 1;
}
.pgm-sss-hero-bg img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.pgm-sss-hero-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.50);
z-index: 2;
}
.pgm-sss-hero-content {
text-align: left;
}
.pgm-sss-hero-title {
color: #fff;
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
margin: 0;
letter-spacing: 2px;
text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.pgm-sss-breadcrumb {
display: inline-flex;
align-items: center;
margin-top: 12px;
font-size: 11px;
font-weight: 700;
color: #fff;
letter-spacing: 1px;
gap: 0;
}
.pgm-sss-breadcrumb a {
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
display: inline-flex;
align-items: center;
transition: color 0.3s;
}
.pgm-sss-breadcrumb a:hover {
color: #fff;
}
.pgm-sss-sep {
color: rgba(255, 255, 255, 0.5);
margin: 0 8px;
font-weight: 800;
}
.pgm-sss-current {
opacity: 0.7;
} .pgm-sss-content-section {
padding: 80px 0 120px 0;
background: #fafbfe;
}
.pgm-sss-grid {
display: grid;
grid-template-columns: 8fr 4fr;
gap: 40px;
align-items: stretch; }
.pgm-sss-faq-list {
display: flex;
flex-direction: column;
gap: 15px;
}
.pgm-sss-faq-item {
background: #fff;
border-radius: 12px;
border: 1px solid rgba(0, 0, 0, 0.04);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
overflow: hidden;
position: relative;
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pgm-sss-faq-item:hover {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
transform: translateY(-2px);
border-color: rgba(var(--pgm-primary-rgb), 0.1);
} .pgm-sss-faq-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 4px;
background: var(--pgm-primary);
opacity: 0;
transition: all 0.3s ease;
}
.pgm-sss-faq-item:hover::before,
.pgm-sss-faq-item.active::before {
opacity: 1;
}
.pgm-sss-faq-question {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
background: transparent;
padding: 25px 35px;
border: none;
cursor: pointer;
}
.pgm-sss-faq-text {
flex-grow: 1;
font-size: 1.1rem;
font-weight: 700;
color: var(--pgm-dark);
text-align: left;
transition: color 0.3s ease;
padding-right: 20px;
}
.pgm-sss-faq-item:hover .pgm-sss-faq-text {
color: var(--pgm-primary);
} .pgm-sss-faq-icon {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
flex-shrink: 0;
border-radius: 50%;
background: rgba(0, 0, 0, 0.03);
color: var(--pgm-dark);
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pgm-sss-faq-icon svg {
transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pgm-sss-faq-question:hover .pgm-sss-faq-icon {
background: rgba(var(--pgm-primary-rgb), 0.1);
color: var(--pgm-primary);
}
.pgm-sss-faq-question:focus-visible {
outline: 3px solid rgba(var(--pgm-primary-rgb), 0.3);
outline-offset: -3px;
} .pgm-sss-faq-item.active {
border-color: rgba(var(--pgm-primary-rgb), 0.2);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.pgm-sss-faq-item.active .pgm-sss-faq-text {
color: var(--pgm-primary);
}
.pgm-sss-faq-item.active .pgm-sss-faq-icon {
background: var(--pgm-primary);
color: #fff;
}
.pgm-sss-faq-item.active .pgm-sss-faq-icon svg {
transform: rotate(-180deg);
} .pgm-sss-faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.6s cubic-bezier(0, 1, 0, 1);
}
.pgm-sss-faq-item.active .pgm-sss-faq-answer {
max-height: 2500px;
transition-timing-function: ease-in-out;
}
.pgm-sss-faq-answer-inner {
padding: 0 35px 35px 35px;
background: #fff;
} .pgm-sss-article {
color: var(--pgm-text);
font-size: 1.05rem;
line-height: 1.7;
padding-top: 15px;
border-top: 1px dashed rgba(0, 0, 0, 0.08); } .pgm-sss-article strong,
.pgm-sss-article b {
color: var(--pgm-dark);
font-weight: 700;
}
.pgm-sss-article p {
margin-bottom: 25px;
}
.pgm-sss-article p:last-child {
margin-bottom: 0;
}
.pgm-sss-article ul,
.pgm-sss-article ol {
margin-left: 20px;
margin-bottom: 25px;
}
.pgm-sss-article li {
margin-bottom: 8px;
}
.pgm-sss-article a {
color: var(--pgm-primary);
text-decoration: none;
font-weight: 600;
}
.pgm-sss-article a:hover {
text-decoration: underline;
} @keyframes pgmSssFadeUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.pgm-animate {
opacity: 0;
animation: pgmSssFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
} .pgm-sss-sidebar-sticky {
position: -webkit-sticky;
position: sticky;
top: 120px;
display: flex;
flex-direction: column;
z-index: 10;
} .pgm-sss-links-box {
background-color: var(--pgm-dark); background-size: cover;
background-position: center;
border-radius: 12px;
padding: 35px 30px;
margin-bottom: 30px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
border: none;
} .pgm-sss-links-media {
position: absolute;
inset: 0;
z-index: 1;
}
.pgm-sss-links-media img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.pgm-sss-links-overlay {
position: absolute;
inset: 0;
background: linear-gradient(145deg, rgba(8, 18, 34, 0.85) 0%, rgba(8, 18, 34, 0.4) 100%);
z-index: 1;
}
.pgm-sss-links-content {
position: relative;
z-index: 2;
}
.pgm-sss-links-title {
font-size: 1.25rem;
font-weight: 800;
color: #fff;
margin: 0 0 25px 0;
padding-bottom: 0;
border-bottom: none;
letter-spacing: 0.5px;
position: relative;
display: inline-block;
} .pgm-sss-links-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 35px;
height: 3px;
background: #fff;
border-radius: 2px;
}
.pgm-sss-links-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 12px;
}
.pgm-sss-links-list li {
border-bottom: none;
} .pgm-sss-links-list a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
color: rgba(255, 255, 255, 0.9);
font-size: 0.95rem;
font-weight: 600;
text-decoration: none;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
position: relative;
overflow: hidden;
} .pgm-sss-links-list a:hover {
background: rgba(255, 255, 255, 0.18);
border-color: rgba(255, 255, 255, 0.3);
color: #fff;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
transform: translateX(4px); } .pgm-sss-links-list a::before {
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 3px;
background: #fff;
transform: scaleY(0);
transform-origin: bottom;
transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pgm-sss-links-list a:hover::before {
transform: scaleY(1);
transform-origin: top;
} .pgm-sss-links-list a svg {
color: rgba(255, 255, 255, 0.4);
width: 18px;
height: 18px;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pgm-sss-links-list a:hover svg {
color: #fff;
transform: translateX(4px);
} .pgm-sss-help-box {
background: linear-gradient(135deg, var(--pgm-primary) 0%, var(--pgm-primary-dark) 100%); border: none;
border-radius: 12px;
padding: 45px 35px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
box-shadow: 0 15px 40px rgba(var(--pgm-primary-rgb), 0.25);
position: relative;
overflow: hidden; } .pgm-sss-help-box::before {
content: '';
position: absolute;
top: -40px;
left: -40px;
width: 140px;
height: 140px;
background: rgba(255, 255, 255, 0.06);
border-radius: 50%;
}
.pgm-sss-help-box::after {
content: '';
position: absolute;
bottom: -30px;
right: -20px;
width: 100px;
height: 100px;
background: rgba(255, 255, 255, 0.04);
border-radius: 50%;
}
.pgm-sss-cta-icon {
width: 75px;
height: 75px;
background: rgba(255, 255, 255, 0.12); color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
position: relative;
z-index: 2; } @keyframes pgmPulseRings {
0% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
}
70% {
box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
}
.pgm-pulse-anim {
animation: pgmPulseRings 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}
.pgm-sss-help-content {
position: relative;
z-index: 2;
}
.pgm-sss-help-content h4 {
font-size: 1.35rem;
font-weight: 800;
color: #fff;
margin: 0 0 12px 0;
}
.pgm-sss-help-content p {
font-size: 1rem;
color: rgba(255, 255, 255, 0.85); line-height: 1.6;
margin: 0 0 32px 0;
}
.pgm-sss-help-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
background: #fff; color: var(--pgm-primary); padding: 16px 20px;
border-radius: 8px;
font-size: 1.05rem;
font-weight: 800;
text-decoration: none;
transition: all 0.4s ease;
position: relative;
z-index: 2;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.pgm-sss-help-btn:hover {
background: var(--pgm-dark); color: #fff;
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.pgm-sss-help-btn svg {
transition: transform 0.4s;
}
.pgm-sss-help-btn:hover svg {
transform: translateX(4px);
} @media (max-width: 992px) {
.pgm-sss-grid {
grid-template-columns: 1fr;
}
.pgm-sss-sidebar-sticky {
position: static;
order: -1; }
.pgm-sss-sidebar-col {
order: 2;
}
}
@media (max-width: 768px) {
.pgm-sss-hero {
min-height: 200px;
}
.pgm-sss-faq-question {
padding: 18px 20px;
font-size: 1rem;
}
.pgm-sss-faq-answer-inner {
padding: 0 20px 25px 20px;
}
.pgm-sss-help-box {
padding: 30px 25px;
}
}