* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Times New Roman', Times, serif;
    color: #111;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top bar */

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 40px;
    font-weight: 700;
}


.actions {
    display: flex;
    align-items: center;
    gap: 16px;
}


/* Navigation */

.nav {

    background-color: white;
    color: black;
    border-bottom: 1px solid #ddd;
}

.nav ul {

    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 12px 0;
    gap: 30px;

}

.nav a {
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 12px;
}

.nav a:hover,
.nav a:focus {
    border-radius: 4px;
    text-decoration: underline;
    color: rgb(182, 1, 182);
}


/* footer */

.site-footer {
  padding: 40px 20px;
  text-align: center;
  background-color: #f8f8f8;
  margin-top: 60px;          
}

/* horizonatal ruler */
hr {
  margin-top: 2rem;          
  margin-bottom: 2rem;       
  border-top: 1px solid #ccc;
  height: 1px;
}

/* main Section */
.job-card {
    background-color: #fff;
    padding: 28px 36px;
    margin: 32px auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.job-category {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.job-title {
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 24px;
}

.job-description {
    font-size: 16px;
    line-height: 1.5;
    max-width: 800px;
    margin-bottom: 24px;
}

.job-locations {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.job-locations a {
    color: #1a4fff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.job-locations a:hover {
    border-bottom: 1px solid #1a4fff;
}


@media (max-width: 768px) {
    .job-card {
        padding: 32px 24px;
    }

    .job-title {
        font-size: 36px;
    }

    .job-description {
        font-size: 16px;
    }

    .job-locations {
        flex-wrap: wrap;
        line-height: 1.6;
    }
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 80px auto 50px;
}

.pricing-header h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
    color: rgb(182, 1, 182); 
}

.pricing-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .pricing-header {
        margin: 50px auto 30px;
    }

    .pricing-header h1 {
        font-size: 36px;
    }

    .pricing-header p {
        font-size: 16px;
    }
}

/* search bar */

/* Search bar (Jobs style) */

.search-container {
    display: flex;
    align-items: center;
    gap: 14px;

    max-width: 900px;
    margin: 40px auto 60px;
    padding: 18px 24px;

    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.search-icon {
    font-size: 22px;
    color: #444;
}

.search-container input {
    border: none;
    outline: none;
    width: 100%;

    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
    color: #111;
}

.search-container input::placeholder {
    color: #777;
}

/* Mobile */
@media (max-width: 768px) {
    .search-container {
        padding: 14px 18px;
    }

    .search-container input {
        font-size: 18px;
    }
}
