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

:root {
    --primary-color: #00ad00;
    --primary-dark: #003475;
    --secondary-color: #003475;
    --accent-color: #00ad00;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --text-color: #333;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: auto;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 25px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

h3 {
    font-size: 1.4rem;
    margin-top: 20px;
    color: var(--primary-dark);
}

p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Header Styles */
.job-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.job-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
}


.company-name {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.job-title {
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 50px;
}

.job-meta-item i {
    font-size: 0.9rem;
}

/* Section Styles */
section {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 35px;
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.section-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.8rem;
    color: rgba(58, 110, 165, 0.1);
    z-index: 0;
}

/* Remove the general li styling */
li {
    margin-bottom: 12px;
    position: relative;
    color: var(--text-light);
}

/* Add bullet points to content lists */
.content-list li {
    padding-left: 28px;
    list-style-type: disc;
    margin-left: 15px;
}

.content-list li:before {
    content: none;  /* Remove the check mark */
}

/* Add bullet points to all card lists */
.card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.card ul li {
    margin-bottom: 12px;
    position: relative;
    color: var(--text-light);
}

/* Keep navigation and footer lists clean */
.main-menu-ex ul li,
.footer-menu ul li {
    padding-left: 0;
    list-style: none;
}

.main-menu-ex ul li:before,
.footer-menu ul li:before {
    content: none;
}

/* Requirements and Benefits */
.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.column {
    flex: 1;
    min-width: 250px;
}

.benefits-list li:before {
    content: "\f005";
    color: var(--secondary-color);
}

/* Apply Button */
.apply-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.apply-button-container {
    margin: 30px 0;
}

.apply-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #5a52e5 100%);
    color: var(--white);
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.apply-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5a52e5 0%, var(--accent-color) 100%);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.apply-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.5);
}

.apply-button:hover:before {
    opacity: 1;
}

.apply-button i {
    margin-left: 8px;
}

/* Footer Styles */
.job-footer {
    text-align: center;
    padding: 30px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .job-header {
        padding: 40px 0;
    }
    
    section {
        padding: 25px;
    }
    
    .job-meta {
        gap: 10px;
    }
    
    .job-meta-item {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 20px;
    }
    
    .section-icon {
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
    
    .apply-button {
        padding: 12px 25px;
        width: 100%;
    }
    
    .logo-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}