

.outer-wrapper {
    padding: 3rem 1.5rem;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    background-color: #020e2a;
}

.header {
    margin-bottom: 40px;
}

.header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ffffff;
}

.header span {
    color: #facc15;
}

.header p {
    color: #d1d5db;
    line-height: 1.6;
    text-align: justify;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background-color: #e5e7eb;
    padding: 20px;
    color: #1a2a44;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #facc15;
    z-index: 0;
    transition: height 0.3s ease;
}

.card:hover::before {
    height: 100%;
}

.card * {
    position: relative;
    z-index: 1;
}

.card:hover {
    color: #ffffff;
}

.card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 8px;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
}

.card-link {
    display: inline-block;
    margin-top: 12px;
    color: #facc15;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card:hover .card-link {
    color: #ffffff;
}

.offer-outer-wrapper {
    padding: 3rem 1.5rem;
    background-color: #020e2a;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

.offer-container {
    max-width: 1024px;
    margin: 0 auto;
}

.offer-header {
    margin-bottom: 40px;
}

.offer-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ffffff;
}

.offer-header span {
    color: #facc15;
}

.offer-header p {
    color: #d1d5db;
    line-height: 1.6;
    text-align: justify;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.offer-card {
    background-color: #e5e7eb;
    padding: 20px;
    color: #1a2a44;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.offer-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #facc15;
    z-index: 0;
    transition: height 0.3s ease;
}

.offer-card:hover::before {
    height: 100%;
}

.offer-card * {
    position: relative;
    z-index: 1;
}

.offer-card:hover {
    color: #ffffff;
}

.offer-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.offer-card-content {
    flex: 1;
    
}

.office-text{
color: #020e2a;
}

.offer-card h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 8px;
}

.offer-card p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
}

.offer-card-link {
    display: inline-block;
    margin-top: 12px;
    color: #facc15;
    text-decoration: none;
    transition: color 0.3s ease;
}

.offer-card:hover .offer-card-link {
    color: #ffffff;
}