body, html {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #4a90e2;
    text-align: center;
    color: #fff;
    padding: 40px 0;
    margin-top: 20px;
}

.header h1 {
    margin-bottom: 10px;
    margin-top: 20px;
}

.header .cta-button-ht {
    background-color: #f68b1f;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.header .cta-button-ht:hover {
    background-color: #d3771a;
}
.header-title {
    font-size: 2em;
    font-weight: bold;
    margin: 10px 0;
}

.header-description {
    font-size: 1.2em;
    margin: 5px 0 15px;
    color: #555;
}


.content {
    
    background-color: #fff;
}

h2, h3 {
    color: #2b2e4a;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step img {
    max-width: 200px;
    margin-right: 20px;
}

.step-content {
    flex: 1;
}

ul {
    padding-left: 20px;
}

.cta-section {
    background-color: #4a90e2;
    color: #ffffff;
    text-align: center;
    padding: 50px 0;
}

.cta-section .cta-button-ht {
    background-color: #ffffff;
    color: #4a90e2;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.faq {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.faq h3 {
    margin-top: 0;
}
/* Add this class to your global stylesheet */
.limited-img {
    max-width: 500px; /* Example size */
    height: auto; /* Maintains aspect ratio */
    margin: 0 auto;
    display: block;
}

.resume-example {
    text-align: center; /* Center-align content inside the div */
    margin: 30px 0; /* Adds spacing around the example */
}

.resume-link {
    display: block; /* Ensures the link takes full width within its container */
    margin: 10px auto; /* Centers the link */
    font-size: 16px;
    color: #4a90e2; /* Your theme color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.resume-link:hover {
    color: #2b5fa0; /* Darker shade on hover */
}
/* CSS for the image */
.gif-container img {
    margin-bottom: 0; /* Ensure there's no margin below the image */
    padding-bottom: 0; /* Ensure there's no padding below the image */
    display: block; /* Prevents any extra inline spacing */
    max-width: 100%; /* Responsive scaling */
}

/* Reduce space in the parent container */
.gif-container {
    margin: 0 auto 10px; /* Reduce bottom margin to 10px, adjust as needed */
    padding: 0; /* Remove any extra padding */
    text-align: center; /* Ensure the image is centered */
}

@media (max-width: 768px) {
    .limited-img {
        max-width: 100%;
    }
}
.hub-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.guide-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.guide-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.guide-card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.guide-card p {
    color: #333;
    font-size: 1em;
    margin-bottom: 20px;
}

.guide-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #34c759; /* Your theme's primary CTA color */
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.guide-link:hover {
    background-color: #28a745; /* Slightly darker shade on hover */
}
/* Resume Grid Card Styling */
.resume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.resume-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensures cards have uniform height */
}

.resume-card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.resume-card p {
    color: #333;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1; /* Expands paragraph to fill space, pushing button down */
}

.resume-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3bbdad; /* Primary CTA color */
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    align-self: center;
    margin-top: auto; /* Pushes link to the bottom */
}

.resume-link:hover {
    background-color: #28a745; /* Darker CTA color on hover */
}
.video-section {
    text-align: center;
    padding: 20px 0;
}

.video-wrapper {
    max-width: 800px; /* Limits the width of the video */
    margin: 0 auto 20px; /* Centers the video and adds spacing */
    padding: 0;
}

.video-wrapper iframe {
    width: 100%; /* Ensures the iframe takes full width of the container */
    height: 450px; /* Set a fixed height; adjust as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-wrapper iframe {
        height: 300px; /* Reduces height on smaller screens */
    }
}

/* Section Styles */
.section {
    padding: 2rem;
    margin: 1rem auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.section h2 {
    color: #3bbdad;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.section h3 {
    font-size: 1.6rem;
    margin-top: 1.5rem;
    color: #000;
}

.section p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.section ul {
    list-style-type: disc;
    margin: 1rem 0 1rem 2rem;
}

.section ul li {
    margin-bottom: 0.5rem;
}

/* FAQ Styles */
.section#faqs p {
    margin-bottom: 1.5rem;
}

.section#faqs strong {
    font-weight: bold;
}
/* =========================================
   RESUME HUB PAGE STYLES (resume-hub.css)
   ========================================= */

/* --- Hero Section --- */
.hub-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hub-header h1 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.hub-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.hub-login-subtext {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- Hero Login Button --- */
.btn-login-hero {
    background-color: #00e676; /* Bright Green */
    color: #0d47a1;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-login-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.6);
    background-color: #fff;
    color: #00c853;
    text-decoration: none;
}

/* --- Navigation & Layout --- */
.back-button-wrapper {
    margin-top: 20px;
}

.back-link {
    color: #666;
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    color: #2a5298;
    text-decoration: none;
}

.section-padding {
    padding: 60px 0;
}

.section-bg-gray {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
}

/* --- Tool Icons Grid --- */
.tool-link-wrapper {
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: block;
}

.tool-link-wrapper:hover {
    text-decoration: none;
    color: inherit;
}

.tool-icon-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tool-icon-box:hover {
    transform: translateY(-5px);
    border-color: #2a5298;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.tool-icon-box i {
    font-size: 2.5rem;
    color: #2a5298;
    margin-bottom: 15px;
}

.tool-icon-box h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tool-desc {
    font-size: 0.9rem;
    color: #666;
}

/* --- Guide Cards --- */
.guide-card {
    height: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.guide-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #2a5298;
}

.guide-card h3 {
    color: #2a5298;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0;
}

.guide-icon {
    vertical-align: middle;
    margin-right: 5px;
}

.guide-desc {
    color: #666;
    font-size: 0.95rem;
}

.read-guide-link {
    color: #2a5298;
    font-weight: 700;
}

.read-guide-link:hover {
    text-decoration: underline;
}

/* --- Industry Examples Card (Blue Highlight) --- */
.industry-card-blue {
    background: #e3f2fd;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #bbdefb;
    text-align: center;
}

.industry-card-blue h3 {
    color: #1565c0;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0;
}

.industry-card-blue p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-industry {
    background: #1565c0;
    color: #fff;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
}

.btn-industry:hover {
    background: #0d47a1;
    color: #fff;
    text-decoration: none;
}

/* --- FAQ Section --- */
.faq-question {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.faq-answer {
    color: #666;
}

.faq-item {
    margin-bottom: 20px;
}

/* --- Footer CTA --- */
.footer-cta {
    background: #2a5298;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.footer-cta p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-cta-white {
    background: #fff;
    color: #2a5298;
}

.btn-cta-white:hover {
    background: #f0f0f0;
    color: #1565c0;
}
/* =========================================
   GUIDE SPECIFIC STYLES (guide-components.css)
   ========================================= */

/* --- Formula Box (The Green Equation) --- */
.formula-box {
    background: #e8f5e9;
    border: 2px dashed #2e7d32;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #1b5e20;
    font-weight: 700;
}

/* --- Comparison Tables (Weak vs Strong) --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comparison-table th {
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #eee;
    font-size: 1.05rem;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    line-height: 1.6;
}

.bad-col {
    color: #c62828; /* Red */
}

.good-col {
    color: #2e7d32; /* Green */
    font-weight: 600;
}

/* --- Flex Utility for Equal Height Cards --- */
.card-equal-height {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}