.cover {
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.title-position {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.tagline h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.company-name h2 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.btn-primary-custom {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: black;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #83807e;
    border-color: #746e6c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    font-size: 1.5rem;
    margin: 0 0.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
}

.location-badge {
    background-color: var(--secondary-color);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -.125em;
    /* match FA baseline */
    fill: currentColor;
    /* inherit text color */
    flex-shrink: 0;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--accent-color) !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .tagline h1 {
        font-size: 2rem;
    }

    .company-name h2 {
        font-size: 1.5rem;
    }

    .title-position {
        padding: 1rem;
    }
}