/* Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #192A3A; /* Dark blue background */
    color: white;
    position: relative;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo span {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.header-title {
    font-size: 16px;
    margin-left: 10px;
    color: #d9d9d9; /* Light grey for HELP CENTER text */
}

.header-right .nav-link {
    color: #d9d9d9;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

.header-right .nav-link:hover {
    color: white;
}

/* Search Bar Styling */
.search-bar {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 10px;
    background-color: #243B55; /* Slightly lighter dark background */
}

.search-input {
    width: 50%;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}







/* Section Styling */
.billing-contact {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    font-family: Arial, sans-serif;
}

/* Breadcrumb styling */
.breadcrumb {
    font-size: 14px;
    color: #6b6b6b;
    margin-bottom: 10px;
}

.breadcrumb a {
    text-decoration: none;
    color: #6b6b6b;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Heading Styling */
.billing-contact h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 5px;
}

/* Updated info */
.updated-info {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Paragraph styling */
.billing-contact p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Links inside paragraph */
.billing-contact p a {
    color: #1A73E8; /* Blue color for links */
    text-decoration: none;
}

.billing-contact p a:hover {
    text-decoration: underline;
}



/* Section Styling */
.related-articles {
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background-color: #f9f9f9;
}

/* Heading */
.related-articles h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Unordered List */
.related-articles ul {
    list-style-type: none;
    padding: 0;
}

/* List Items */
.related-articles ul li {
    margin-bottom: 15px;
}

/* Links */
.related-articles ul li a {
    text-decoration: none;
    color: #1A73E8;
    font-size: 18px;
    transition: color 0.3s ease;
}

.related-articles ul li a:hover {
    color: #ff8800; /* Change to orange on hover */
}







/* Feedback Section Styling */
.feedback-section {
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Text Styling */
.feedback-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

/* Emoji Container */
.emoji-feedback {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Emoji Styling */
.emoji {
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.2s;
}

/* Emoji Hover Effect */
.emoji:hover {
    transform: scale(1.3);
}



/* Footer Section */
.footer-section {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
}

/* Footer Content */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Logo Styling */
.footer-logo {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    text-transform: lowercase;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
}

/* Additional styling to align and position the logo correctly */
.footer-logo::before {
    content: "● ";
    font-size: 20px;
    vertical-align: middle;
    color: #fff;
}
