:root {
    --primary-color: #2B5AA0;
    --secondary-color: #4CAF50;
    --accent-color: #FF6B35;
    --text-dark: #333;
    --text-light: #666;
    --background-light: #f8f9fa;
    --white: #fff;
}

/* CSS Variables for Brand Colors */
:root {
    --primary-color: #2B5AA0;
    --primary-light: #4A7BC8;
    --primary-dark: #1e4080;
    --secondary-color: #FF8A65;
    --secondary-light: #FFAB91;
    --accent-color: #2E7D32;
    --accent-light: #4CAF50;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

.col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 0 10px;
}

.col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 0 10px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 10px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    background: transparent;
    transform: scale(1.33);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Fallback for missing logo */
.logo-img:not([src]),
.logo-img[src=""] {
    display: none;
}

.logo-img[alt]:empty::before {
    content: attr(alt);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: var(--accent-color);
    color: white;
}

.hero-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 3rem;
    min-height: 500px;
}

.hero-content {
    flex: 1;
    min-width: 45%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.hero-image img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 138, 101, 0.3);
}

.btn-primary:hover {
    background: #FF7043;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 101, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
    border-width: 2px;
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary-color);
    border-color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 150px 0 80px;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services */
.services-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

.content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.feature i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature p {
    color: #666;
    line-height: 1.6;
}


.image-placeholder {
}

.image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.image-placeholder img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* CTA Section */
.cta {
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* About Page Specific Styles */
.about-content {
    padding: 80px 0;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.status-notice {
    background: #f1f8e9;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.notice-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.notice-content h4 {
    color: #2980b9;
    margin-bottom: 0.5rem;
}

.notice-content p {
    margin: 0;
    color: #34495e;
}

/* Mission, Vision, Values */
.mission-vision-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.mvv-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mvv-card ul {
    text-align: left;
    list-style: none;
    color: #666;
}

.mvv-card ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Our Approach */
.our-approach {
    padding: 80px 0;
}

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

.approach-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.approach-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.approach-step p {
    color: #666;
    line-height: 1.6;
}

/* Quality & Safety */
.quality-safety {
    padding: 80px 0;
    background: #f8f9fa;
}

.quality-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.quality-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.quality-features {
    margin-top: 2rem;
}

.quality-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.quality-feature i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.quality-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.quality-feature p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.quality-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Services Page Specific Styles */
.services-intro {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.service-detail {
    padding: 80px 0;
}

.service-detail.alt-bg {
    background: #f8f9fa;
}

.service-content {
    padding: 2rem 0;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: white;
}

.service-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 0.8rem;
    color: #666;
    line-height: 1.6;
}

.service-features ul li i {
    color: var(--secondary-color);
    font-size: 1rem;
}


.service-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.service-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.service-note p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

/* Service Availability */
.service-availability {
    padding: 60px 0;
    background: #f8f9fa;
}

.availability-notice {
    background: #f1f8e9;
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
}

.availability-notice .notice-icon i {
    color: var(--primary-color);
    font-size: 2rem;
}

.availability-notice .notice-content h3 {
    color: #2980b9;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.availability-notice .notice-content p {
    margin: 0 0 1rem 0;
    color: #34495e;
    line-height: 1.6;
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 80px 0;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-group label,
.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.checkbox-group input,
.radio-group input {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
    gap: 0.5rem;
}

.checkbox-label input {
    width: auto;
    margin: 0;
}

.contact-info-container {
    padding: 2rem 0;
}

.contact-info-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info-container p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    margin: 0 0 0.3rem 0;
    color: #666;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details small {
    color: #999;
    font-size: 0.9rem;
}

.business-hours {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.business-hours h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e1e5e9;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #666;
}

.business-hours p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

/* Registration Notice */
.registration-notice {
    background: #e8f4fd;
    padding: 40px 0;
}

.notice-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notice-content .notice-icon i {
    color: var(--primary-color);
    font-size: 2rem;
}

.notice-text h3 {
    color: #2980b9;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.notice-text p {
    margin: 0;
    color: #34495e;
    line-height: 1.6;
}

/* FAQ Preview */
.faq-preview {
    padding: 60px 0;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Careers Page Specific Styles */
.career-intro {
    padding: 80px 0;
}

.career-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.career-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.career-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.career-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Current Opportunities */
.current-opportunities {
    padding: 80px 0;
    background: #f8f9fa;
}

.growing-notice {
    margin-bottom: 3rem;
}

.growing-notice .notice-content {
    background: #d4edda;
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
}

.growing-notice .notice-icon i {
    color: var(--secondary-color);
    font-size: 2rem;
}

.growing-notice .notice-text h3 {
    color: #155724;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.growing-notice .notice-text p {
    margin: 0 0 1rem 0;
    color: #155724;
    line-height: 1.6;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.opportunity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.opportunity-header {
    background: var(--accent-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.opportunity-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.job-type {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.opportunity-content {
    padding: 2rem;
}

.opportunity-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.job-details,
.job-requirements {
    margin-bottom: 2rem;
}

.job-details h4,
.job-requirements h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.job-details ul,
.job-requirements ul {
    list-style: none;
}

.job-details ul li,
.job-requirements ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.job-details ul li:before,
.job-requirements ul li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 0.1rem;
}

.opportunity-footer {
    padding: 0 2rem 2rem;
}

/* What We Offer */
.what-we-offer {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Application Process */
.application-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Application Form */
.application-form-section {
    padding: 80px 0;
}

.application-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.application-form-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.application-form-container p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        min-width: 200px;
    }

    .col-md-6,
    .col-md-7,
    .col-md-5,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row {
        flex-direction: column;
    }

    .services-grid,
    .mvv-grid,
    .approach-grid,
    .benefits-grid,
    .opportunities-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .page-header-content h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-form-container,
    .application-form-container {
        padding: 2rem 1.5rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .service-card,
    .mvv-card,
    .opportunity-card,
    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .page-header {
        padding: 120px 0 60px;
    }
}

/* Social Media Styling */
.social-media {
    margin-top: 1.5rem;
}

.social-media h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    color: var(--primary-color);
}

.social-link i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
    width: 20px;
}

/* Responsive social links */
@media (min-width: 768px) {
    .social-links {
        flex-direction: row;
        gap: 1rem;
    }
}