/* Overall Page Setup */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #001f3f; /* Navy Blue sides */
    margin: 0;
    padding: 20px 0; /* Minimal top/bottom padding */
    color: #333;
}

/* Container that holds the content */
.container {
    max-width: 95%; /* Reduces white space on the sides */
    width: 1100px;
    margin: 0 auto;
    background-color: #ffffff; /* White center for readability */
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-radius: 8px;
}

/* Header Styling */
.header-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #001f3f;
    padding-bottom: 20px;
}

.logo {
    height: 70px;
    width: auto;
}

.header-text h1 {
    font-size: 36px;
    margin: 0;
    color: #001f3f;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0 0;
}

/* Table Look for the Tips */
.tips-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd; /* Outer table border */
}

.tip-row {
    display: flex;
    align-items: center;
    padding: 10px 15px; /* Less space between lines */
    border-bottom: 1px solid #eee; /* Lines between items */
    transition: background 0.2s;
}

.tip-row:last-child {
    border-bottom: none;
}

.tip-row:hover {
    background-color: #f9f9f9; /* Subtle highlight when hovering */
}

/* Content Spacing */
.icon {
    font-size: 24px;
    width: 50px;
    text-align: center;
    margin-right: 15px;
}

.content h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2; /* Tightens the title line */
}

.content p {
    font-size: 13px;
    color: #777;
    margin: 2px 0 0 0;
    line-height: 1.3; /* Tightens the description line */
}