/* --- Global Styles & Variables --- */
:root {
    --primary-dark: #304C89;     /* Deep Navy Blue for backgrounds, headings */
    --primary-light: #e8e5da;    /* Soft Beige for light backgrounds, cards */
    --accent-vibrant: #1a7cecc9;   /* Bright Blue for buttons and links */
    --accent-muted: #9eb7e5;     /* Lighter, muted blue */
    --accent-warm: #cdc392;      /* Earthy Gold for highlights */
    
    --text-on-dark: #e8e5da;     /* Light text for dark backgrounds */
    --text-on-light: #304C89;    /* Dark text for light backgrounds */
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    background-color: #ffffff; /* A clean white base */
    color: var(--text-on-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-on-light);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; text-align: center; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent-vibrant);
}

/* --- Navbar --- */
.navbar {
    background-color: rgba(241, 238, 222, 0.918);
    padding: 1.2rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar nav a {
    color: var(--text-on-light);
    font-weight: 800;
    transition: color 0.3s ease;
}

.navbar nav a.active,
.navbar nav a:hover {
    color: var(--accent-vibrant);
}

.navbar .logo img {
    height: 40px; /* Increased from 40px - adjust this number as needed */
    width: auto;  /* Keeps the logo from looking stretched */
    display: block;
    object-fit: contain; /* Ensures the whole image fits without clipping */
}

/* Ensure the text stays aligned with the larger logo */
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 8px; /* More space between a larger logo and the text */
}



.navbar .logo img {
    /* Use 'max-height' to prevent it from exploding the navbar 
       but set a large 'height' to force it bigger */
    height: 80px !important; 
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Give the navbar more room to breathe if the logo is tall */
.navbar {
    padding: 0.1rem 0; 
}







/* --- Hero Section --- */
.hero {
    position: relative; /* Needed for absolute positioning of background images */
    overflow: hidden; /* Hide overflowing parts of images */
    background-color: var(--primary-dark); /* Fallback background */
    color: var(--text-on-dark);
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    isolation: isolate; /* Creates a new stacking context for the overlay */
}

/* Overlay to ensure text readability over varying images */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(48, 76, 137, 0.7); /* Primary Dark with transparency */
    z-index: 1; /* Place over images but under text */
}

.hero .container {
    position: relative; /* Bring content above the overlay */
    z-index: 2;
}

/* Hero background images container */
.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind the overlay and text */
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; /* Start hidden */
    transition: opacity 1.5s ease-in-out; /* Smooth fade transition */
}

.hero-bg-image.active {
    opacity: 1; /* Show active image */
}


.hero h1 {
    color: #fff; /* White for max impact */
}

.hero p {
    font-size: 1.2rem;
    color: var(--accent-muted); /* Using the muted blue for softer text */
    max-width: 700px;
    margin: 1rem auto 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-vibrant);
    color: var(--text-on-dark);
    padding: 0.8rem 0.8rem;
    border: 3px solid rgba(96, 171, 224, 0.836);
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-muted);
    border-color: var(--accent-muted);
    color: var(--primary-dark);
}

/* --- Content & Card Sections --- */
.content-section {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-section.bg-light {
    background-color: var(--primary-light);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(48, 76, 137, 0.1);
}


/* Grid layout */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Image container */
.image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image styling */
.image-placeholder img {
    width: 100%;
    max-width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Animation */
.animate-image {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    animation: fadeZoomIn 1s ease-out forwards;
}

@keyframes fadeZoomIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-placeholder img {
        height: 250px;
    }
}



/* --- Vision/Mission Section --- */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-mission-grid h3 {
    color: var(--accent-warm); /* Using the gold for the special heading */
}

/* --- Image Placeholder --- */
.image-placeholder {
    background-color: var(--primary-light);
    border: 1px dashed var(--accent-muted);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-style: italic;
}

/* --- Final CTA Section --- */
.cta-section {
    background-color: var(--primary-dark);
    color: var(--text-on-dark);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    color: var(--accent-muted);
}

.cta-button-light {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-button-light:hover {
    background-color: var(--accent-warm);
}

/* --- Footer --- */
footer {
    background-color: var(--primary-dark);
    color: var(--accent-muted);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: var(--accent-muted);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-warm);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(158, 183, 229, 0.3);
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* --- Content Image Styling --- */
.content-image {
    width: 100%; /* Make the image take up the full width of its container */
    max-width: 100%; /* Ensure it doesn't overflow */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Give it nice rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    margin-top: 2rem; /* Add some space above the image */
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.card-link {
    font-weight: 600;
    color: var(--accent-vibrant);
    margin-top: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.card-link:hover {
    transform: translateX(5px);
}

/* --- Portfolio Card Styling --- */
.portfolio-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden; /* This keeps the image corners rounded */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Important for positioning overlay */
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(48, 76, 137, 0.15);
}

.portfolio-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative; /* For the overlay */
    display: flex; /* To center any potential text within it */
    align-items: center;
    justify-content: center;
}

/* Add an overlay to the portfolio images */
.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(48, 76, 137, 0.3); /* Primary Dark with transparency */
    transition: background-color 0.3s ease;
}

.portfolio-card:hover .portfolio-image::before {
    background-color: rgba(48, 76, 137, 0.1); /* Lighter overlay on hover */
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

/* --- Centered Button Container --- */
.centered-button-container {
    text-align: center;
    margin-top: 3rem;
}

/* --- About Page Specific Styles --- */
.page-hero {
    background-color: var(--primary-dark);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.8rem;
}

.page-hero p {
    color: var(--accent-muted);
    font-size: 1.2rem;
}

.grid-2-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image covers the circle without distortion */
    border: 4px solid var(--primary-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-info {
    margin-top: 1rem;
}

.team-info h4 {
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.team-info p {
    font-size: 0.9rem;
    color: #666;
}

/* --- Services Page Specific Styles --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--accent-vibrant); /* This adds the colored top border */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(48, 76, 137, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* --- Workflow/Process Styling (with Timeline) --- */
.workflow-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem; /* Added more top margin for spacing */
    gap: 2rem;
    position: relative; /* Needed for the timeline pseudo-element */
}

/* The horizontal timeline for desktop */
.workflow-steps::before {
    content: '';
    position: absolute;
    top: 25px; /* Vertically centers the line with the 50px tall number circles */
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-light);
    z-index: 0; /* Places the line behind the numbers */
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative; /* Make number sit on top of the line */
    z-index: 1;
    border: 4px solid #fff; /* Creates a clean break in the timeline */
}

/* --- Portfolio Page Specific Styles --- */
.portfolio-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid var(--primary-light);
    color: var(--text-on-light);
    padding: 0.6rem 1.2rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.filter-btn.active {
    background-color: var(--accent-vibrant);
    color: #fff;
    border-color: var(--accent-vibrant);
}

.portfolio-grid {
    gap: 1.5rem; /* Slightly smaller gap for a tighter grid */
}

/* For filtering animation */
.portfolio-card.hide {
    display: none;
}

/* --- Learning Page Specific Styles --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Cohort Card Styling with Images */
.cohort-list {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Increased gap for better separation */
    margin-top: 3rem;
}

.cohort-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex; /* Key change: Use flexbox for side-by-side layout */
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    border-left: 5px solid var(--accent-vibrant);
    overflow: hidden; /* Ensures image corners stay rounded */
}

.cohort-image {
    width: 200px;
    height: 150px;
    object-fit: cover; /* Prevents image from stretching */
    border-radius: 5px;
    flex-shrink: 0; /* Prevents image from shrinking */
}

.cohort-details {
    flex-grow: 1; /* Allows the text content to fill the remaining space */
}

.cohort-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cohort-header h3 {
    margin-bottom: 0;
}

.cohort-status {
    background-color: #e0e0e0;
    color: #555;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0; /* Prevents the tag from shrinking */
}

.cohort-status.upcoming {
    background-color: var(--accent-warm);
    color: var(--primary-dark);
}

/* --- Career Page Specific Styles --- */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.job-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--accent-warm); /* Using the warm accent color */
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on small screens */
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.job-header {
    flex-basis: 300px; /* Base size for the header */
    flex-grow: 1;
}

.job-header h3 {
    margin-bottom: 0.25rem;
}

.job-type {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.job-card p {
    flex-basis: 400px; /* Base size for the description */
    flex-grow: 2;
    margin-bottom: 0; /* Reset margin */
}

.job-card .cta-button {
    flex-shrink: 0; /* Prevents the button from shrinking */
}

/* --- Contact Page Specific Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info column is smaller */
    gap: 4rem;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(48, 76, 137, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 2rem;
}

.info-item h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.info-item p {
    margin-bottom: 0;
    color: #555;
}

/* Contact Form Styling */
.contact-form-container {
    padding-left: 3rem;
    border-left: 1px solid var(--primary-light);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--primary-light);
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-vibrant);
}

.contact-form textarea {
    resize: vertical; /* Allow user to resize vertically */
}

.contact-form .cta-button {
    border: none;
    cursor: pointer;
}

/* --- Form Status Messages --- */
#form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    display: none; /* Hidden by default */
}

#form-status.success {
    display: block;
    background-color: #e6f1ff; /* Light blue */
    color: #304C89; /* Dark blue */
    border: 1px solid #9eb7e5; /* Muted blue */
}

#form-status.error {
    display: block;
    background-color: #fbeaea; /* Light red */
    color: #9c2b2b; /* Dark red */
    border: 1px solid #f5c6c6;
}

/* --- Mobile Navigation & Hamburger --- */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001; /* Above the mobile nav overlay */
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Styles for the "open" state (X icon) */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Optional: Prevent body scroll when nav is open */
body.noscroll {
    overflow: hidden;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }

    .navbar nav { display: none; }
    
    .grid-3,
    .grid-2,
    .vision-mission-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* ... (other styles) */

    .workflow-steps {
        flex-direction: column; /* Stack the steps vertically */
        align-items: center;
    }
    
    /* The vertical timeline for mobile */
    .workflow-steps::before {
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    /* ... (other styles) */
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on smaller screens */
    }

    .cohort-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    /* ... (other styles) */

    .cohort-card {
        flex-direction: column; /* Stack image and text vertically */
        align-items: flex-start; /* Align items to the start */
        gap: 1.5rem;
    }

    .cohort-image {
        width: 100%; /* Make image full-width on mobile */
        height: 180px;
    }
}

@media (max-width: 768px) {
    /* ... (other styles) */

    .job-card {
        flex-direction: column;
        align-items: flex-start; /* Align all items to the start */
        gap: 1rem;
    }

    .job-card p {
        margin-bottom: 1rem; /* Add margin back for vertical stacking */
    }
}

@media (max-width: 768px) {
    /* ... (other styles) */

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .contact-form-container {
        padding-left: 0;
        border-left: none;
        padding-top: 2rem;
        border-top: 1px solid var(--primary-light);
    }
}

/* newwwwww */
/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }

    /* Show the hamburger menu */
    .menu-toggle {
        display: flex;
    }

    /* Style the mobile navigation container */
    .navbar nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        /* Hide it by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.5s ease-in-out;
        z-index: 2000;
    }

    /* "Open" state for the mobile nav */
    .navbar nav.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Style the links for mobile */
    .navbar nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    .navbar nav a {
        color: var(--text-on-dark);
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .navbar nav a.active,
    .navbar nav a:hover {
        color: var(--accent-vibrant);
    }

    /* All other existing responsive rules */
    .grid-3,
    .grid-2,
    .grid-2-about,
    .vision-mission-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-2-about {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .workflow-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .workflow-steps::before {
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        transform: translateX(-50%);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cohort-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .cohort-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .cohort-image {
        width: 100%;
        height: 180px;
    }
    
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .job-card p {
        margin-bottom: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .contact-form-container {
        padding-left: 0;
        border-left: none;
        padding-top: 2rem;
        border-top: 1px solid var(--primary-light);
    }
}