/* Cyber Page Titles Plugin Styles */
.cyber-page-title-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 0px;
}

/* Cyber Page Title Section */
.cyber-page-title {
    background-color: #139ba6;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    background-image: linear-gradient(135deg, #139ba6 0%, #00957d 100%);
}

.cyber-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00A896, transparent);
}

.cyber-page-title h1 {
    color: white !important;
    font-size: 2.5rem !important;
    font-weight: 300 !important;
    margin-bottom: 20px !important;
    letter-spacing: 8px !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    margin-top: 0 !important;
}

.cyber-page-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cyber-page-subtitle span {
    position: relative;
}

.cyber-page-subtitle span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cyber-page-title {
        padding: 60px 20px;
    }

    .cyber-page-title h1 {
        font-size: 2.5rem !important;
        letter-spacing: 4px !important;
    }

    .cyber-page-subtitle {
        flex-direction: column;
        gap: 10px;
    }

    .cyber-page-subtitle span:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .cyber-page-title h1 {
        font-size: 2rem !important;
        letter-spacing: 2px !important;
    }
}

/* Override any existing styles that might interfere */
.cyber-page-title-container * {
    box-sizing: border-box;
}

.cyber-page-title-container .container {
    margin: 0 auto;
}

/* Ensure the cyber page title appears at the top of content */
.cyber-page-title-container + * {
    margin-top: 0;
}

/* Additional spacing after cyber page title */
.cyber-page-title-container {
    margin-bottom: 0px;
}