/* style/safety-guidelines.css */
.page-safety-guidelines {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.page-safety-guidelines__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-safety-guidelines__hero-section {
    background: linear-gradient(135deg, #0A2E50 0%, #1A4D80 100%); /* Deeper blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-safety-guidelines__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_security_pattern,digital_grid]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-safety-guidelines__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
}

.page-safety-guidelines__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-safety-guidelines__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-safety-guidelines__section:nth-of-type(even) {
    background-color: #f2f7fc; /* Lighter blue-grey for alternating sections */
}

.page-safety-guidelines__section-title {
    font-size: 2.5em;
    color: #0A2E50; /* Main dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-safety-guidelines__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-safety-guidelines__content-block p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-safety-guidelines__content-block h3 {
    font-size: 1.8em;
    color: #0A2E50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-safety-guidelines__content-block h4 {
    font-size: 1.5em;
    color: #0A2E50;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-safety-guidelines__content-block ul,
.page-safety-guidelines__content-block ol {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-safety-guidelines__content-block ol {
    list-style-type: decimal;
}

.page-safety-guidelines__content-block li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-safety-guidelines__image-text-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-safety-guidelines__image-text-layout--reversed {
    flex-direction: row-reverse;
}

.page-safety-guidelines__image-text-layout .page-safety-guidelines__image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-safety-guidelines__image-text-layout .page-safety-guidelines__text-content {
    flex: 1;
    max-width: 50%;
}

.page-safety-guidelines__image--center {
    display: block;
    margin: 30px auto;
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-safety-guidelines__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-safety-guidelines__card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-safety-guidelines__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-safety-guidelines__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #FFD700; /* Gold icon */
}

.page-safety-guidelines__card h3 {
    font-size: 1.5em;
    color: #0A2E50;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-safety-guidelines__card p {
    font-size: 1em;
    color: #666;
}

.page-safety-guidelines__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-safety-guidelines__button--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2E50; /* Dark blue */
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-safety-guidelines__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-safety-guidelines__button--secondary {
    background-color: #0A2E50; /* Dark blue */
    color: #ffffff;
    border: 2px solid #0A2E50;
    box-shadow: 0 4px 10px rgba(10, 46, 80, 0.3);
}

.page-safety-guidelines__button--secondary:hover {
    background-color: #1A4D80;
    border-color: #1A4D80;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(10, 46, 80, 0.4);
}

.page-safety-guidelines__button-group {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-safety-guidelines__callout-text {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-top: 30px;
    font-size: 1.1em;
}

.page-safety-guidelines__support-info {
    text-align: center;
    margin-top: 40px;
}

.page-safety-guidelines__support-info h3 {
    color: #0A2E50;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.page-safety-guidelines__support-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 700px;
}

.page-safety-guidelines__support-info li {
    background-color: #f0f5fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-safety-guidelines__support-info li strong {
    color: #0A2E50;
}

.page-safety-guidelines__commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-safety-guidelines__commitment-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-safety-guidelines__commitment-item:hover {
    transform: translateY(-5px);
}

.page-safety-guidelines__commitment-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-safety-guidelines__commitment-item h4 {
    color: #0A2E50;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-safety-guidelines__commitment-item p {
    color: #666;
    font-size: 1em;
}

.page-safety-guidelines__final-cta {
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    color: #0A2E50;
    margin-top: 60px;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-safety-guidelines__hero-title {
        font-size: 2.8em;
    }

    .page-safety-guidelines__hero-description {
        font-size: 1.1em;
    }

    .page-safety-guidelines__section-title {
        font-size: 2em;
    }

    .page-safety-guidelines__image-text-layout {
        flex-direction: column;
    }

    .page-safety-guidelines__image-text-layout .page-safety-guidelines__image,
    .page-safety-guidelines__image-text-layout .page-safety-guidelines__text-content {
        max-width: 100%;
    }

    .page-safety-guidelines__grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-safety-guidelines__hero-section {
        padding: 80px 0;
    }

    .page-safety-guidelines__hero-title {
        font-size: 2.2em;
    }

    .page-safety-guidelines__hero-description {
        font-size: 1em;
    }

    .page-safety-guidelines__section {
        padding: 40px 0;
    }

    .page-safety-guidelines__section-title {
        font-size: 1.8em;
    }

    .page-safety-guidelines__content-block p,
    .page-safety-guidelines__content-block li {
        font-size: 0.95em;
    }

    .page-safety-guidelines__button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }

    .page-safety-guidelines__grid-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-safety-guidelines__hero-section {
        padding: 60px 0;
    }

    .page-safety-guidelines__hero-title {
        font-size: 1.8em;
    }

    .page-safety-guidelines__hero-description {
        font-size: 0.9em;
    }

    .page-safety-guidelines__section-title {
        font-size: 1.5em;
    }

    .page-safety-guidelines__button-group {
        flex-direction: column;
    }

    .page-safety-guidelines__button {
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}