* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
}

/* Top header bar */
.header {
    background-color: #ffffff;
    border-bottom: none;
    padding: 0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

/* Logo section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.esafety-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.esafety-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-svg {
    width: 50px;
    height: 50px;
}

.esafety-text {
    font-size: 22px;
    font-weight: 400;
    color: #1b324b;
}

/* Report button */
.report-button {
    background-color: #b5234d;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-button:hover {
    background-color: #8f1e3f;
}

.report-button::after {
    content: "→";
    font-size: 16px;
}

/* Navigation bar */
.nav-bar {
    background-color: #1b324b;
    padding: 0;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 0 40px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 18px 25px;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: #ffd700;
}

/* Red notification bar */
.notification-bar {
    background-color: #b5234d;
    color: white;
    padding: 15px 0;
    text-align: center;
    border-top: 5px solid #5767dc;
}

.notification-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: 16px;
    font-weight: 500;
}

.notification-content a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.notification-content a:hover {
    text-decoration: none;
}

/* Image gallery carousel section */
.gallery-section {
    background-color: #f8f9fa;
    padding: 30px 0;
}

.gallery-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-container {
    position: relative;
    margin-top: 40px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-item {
    background: #1b324b;
    min-width: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-image {
    width: 100%;
    background: linear-gradient(135deg, #1b324b, #2c4a6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(87, 103, 220, 0.3), rgba(181, 35, 77, 0.3));
}

.gallery-image:has(img)::before {
    display: none;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.gallery-content {
    padding: 30px;
}

.gallery-title {
    color: #1b324b;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gallery-text {
    color: white;
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 700;
}

.learn-more-btn {
    background-color: #87ceeb;
    color: #1b324b;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more-btn:hover {
    background-color: #5fb3d4;
    transform: translateY(-1px);
}

.learn-more-btn::after {
    content: "→";
    font-size: 16px;
}

/* Carousel navigation dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #1b324b;
    transform: scale(1.2);
}

.dot:hover {
    background-color: #1b324b;
    opacity: 0.7;
}

/* Wide screen layout for carousel */
@media (min-width: 768px) {
    .gallery-container {
        max-width: 1000px;
    }

    .gallery-item {
        flex-direction: row;
        align-items: center;
    }

    .gallery-image {
        width: 65%;
        order: 2;
    }

    .gallery-content {
        width: 35%;
        order: 1;
        padding: 0 0 0 35px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Main content area */
.main-content {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.welcome-section {
    background: white;
    padding: 60px 40px;
    text-align: center;
}

.welcome-section h1 {
    color: #1b324b;
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 600;
}

.welcome-section p {
    color: #495057;
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Email signup banner */
.email-signup-banner {
    background: linear-gradient(135deg, #1b324b, #2c5aa0);
    padding: 60px 0;
    margin-top: 40px;
}

.email-signup-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.email-signup-title {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.email-signup-form {
    display: flex;
    gap: 15px;
    align-items: center;
}

.email-input {
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    width: 300px;
    outline: none;
    font-family: 'Work Sans', sans-serif;
}

.email-input::placeholder {
    color: #666;
}

.signup-btn {
    background-color: #87ceeb;
    color: #1b324b;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.signup-btn:hover {
    background-color: #5fb3d4;
    transform: translateY(-1px);
}

.signup-btn::after {
    content: "→";
    font-size: 16px;
}

/* New banner styling */
.paragraph--type--full-width-banner-txt-btn {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 60px;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.c-full-width-banner-link__title {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

/* Responsive design */
@media (max-width: 1024px) {
    .header-content {
        padding: 15px 20px;
    }

    .nav-content {
        padding: 0 20px;
    }

    .notification-content {
        padding: 0 20px;
    }

    .main-content {
        padding: 0 20px;
    }

    .gallery-container {
        padding: 0 20px;
    }

    .email-signup-content {
        padding: 0 20px;
    }

    .email-input {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .logo-section {
        justify-content: center;
    }

    .nav-content {
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .nav-item {
        padding: 15px 12px;
        font-size: 14px;
    }

    .main-content {
        margin: 20px auto;
        padding: 0 15px;
    }

    .welcome-section {
        padding: 40px 20px;
    }

    .welcome-section h1 {
        font-size: 28px;
    }

    .notification-content {
        padding: 0 15px;
        font-size: 15px;
    }

    .gallery-container {
        padding: 0 15px;
    }

    .gallery-content {
        padding: 20px;
    }

    .gallery-title {
        font-size: 20px;
    }

    .gallery-item {
        flex-direction: column !important;
    }

    .gallery-image {
        font-size: 36px;
        width: 100% !important;
        order: 1 !important;
    }

    .gallery-content {
        width: 100% !important;
        order: 2 !important;
        padding: 20px !important;
        text-align: center;
    }

    .email-signup-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }

    .email-signup-title {
        font-size: 24px;
    }

    .email-signup-form {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .email-input {
        width: 100%;
    }

    .signup-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Report Abuse Section */
.report-abuse-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.report-abuse-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.report-abuse-title {
    color: #1b324b;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}

.report-abuse-container p {
    color: #495057;
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.report-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.report-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #1b324b;
}

.report-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.report-card-title {
    color: #1b324b;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.report-card-text {
    color: #495057;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.report-card-btn {
    background-color: #1b324b;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.report-card-btn:hover {
    background-color: #0f1f2e;
    transform: translateY(-1px);
}

.report-card-btn.emergency {
    background-color: #b5234d;
}

.report-card-btn.emergency:hover {
    background-color: #8f1e3f;
}

/* Responsive design for report cards */
@media (max-width: 1024px) {
    .report-abuse-container {
        padding: 0 20px;
    }
    
    .report-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .report-abuse-section {
        padding: 60px 0;
    }
    
    .report-abuse-container {
        padding: 0 15px;
    }
    
    .report-abuse-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .report-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .report-card {
        padding: 25px 20px;
    }
    
    .report-card-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .report-card-title {
        font-size: 20px;
    }
}