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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
    color: #fff;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(28, 115, 196, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 70%, rgba(25, 180, 185, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 40%, rgba(66, 39, 157, 0.1) 0%, transparent 30%),
        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='M0 0h100v100H0z' fill='none'/%3E%3Cpath d='M25 25h50v50H25z' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.2' fill='none'/%3E%3C/svg%3E");
    z-index: -1;
}

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

/* Header styles */
header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #ff6b35;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.contact-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #e85a2a;
}

.search-icon {
    font-size: 18px;
    color: #fff;
    margin-left: 20px;
    cursor: pointer;
}

/* Breadcrumb styles */
.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: #ff6b35;
    text-decoration: none;
}

.breadcrumb span {
    color: #fff;
    margin: 0 10px;
}

/* Hero section styles */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 0;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #ccd6f6;
    font-style: italic;
}

.description {
    font-size: 18px;
    margin-bottom: 35px;
    color: #a8b2d1;
    line-height: 1.6;
}

.hero-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-btn:hover {
    background-color: #e85a2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232, 90, 42, 0.3);
}

/* Benefits section */
.benefits {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-item {
    padding: 20px;
}

.benefit-number {
    font-size: 14px;
    color: #ff6b35;
    margin-bottom: 10px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff6b35;
}

.benefit-description {
    color: #a8b2d1;
    line-height: 1.6;
}

/* Services section */
.services {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.services h2 {
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Engagement Models section */
.engagement {
    padding: 80px 0;
    background-color: #f7f7f3;
}

.engagement h2 {
    color: #333;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.engagement-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.engagement-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.engagement-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.engagement-btn {
    background-color: white;
    color: #ff6b35;
    border: 1px solid #ff6b35;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.engagement-btn:hover {
    background-color: #ff6b35;
    color: white;
}

.engagement-nav {
    position: absolute;
    right: 0;
    top: -70px;
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn:hover {
    background-color: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

/* Apply Now section */
.apply {
    display: flex;
    min-height: 500px;
}

.apply-content {
    flex: 0 0 40%;
    background-color: #f15a29;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apply-content h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 32px;
}

.apply-content p {
    font-size: 18px;
    line-height: 1.6;
}

.apply-form {
    flex: 0 0 60%;
    background-color: white;
    padding: 120px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.recaptcha {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
    color: #555;
}

.submit-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #e85a2a;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .engagement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apply {
        flex-direction: column;
    }

    .apply-content,
    .apply-form {
        flex: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .description {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .apply-content,
    .apply-form {
        padding: 40px 20px;
    }
}