
.sp-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 800px;
    margin: 0px auto;
    margin-bottom:40px;
    padding: 20px;
    color: #333;
    box-sizing: border-box;
}

    .sp-container *, .sp-container *::before, .sp-container *::after {
        box-sizing: border-box;
    }

.aerospace-banner {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

    .aerospace-banner h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        color: #fff;
    }

    .aerospace-banner p {
        font-size: 1.4rem;
        max-width: 800px;
        margin: 0 auto 30px;
    }

.sp-header {
    text-align: center;
    margin-bottom: 40px;
}

    .sp-header h1 {
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 10px 0;
        color: #1a1a1a;
    }

    .sp-header p {
        font-size: 16px;
        color: #666;
        margin: 0;
    }

.sp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 600px) {
    .sp-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.sp-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .sp-card:hover {
        border-color: var(--thm-base);
        box-shadow: 0 10px 25px rgba(254, 90, 14, 0.15);
        transform: translateY(-2px);
    }

.sp-icon-box {
    width: 60px;
    height: 60px;
    background-color: #FFF0E6; /* Light orange tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .sp-icon-box svg {
        width: 28px;
        height: 28px;
        fill: var(--thm-base);
    }

.sp-card h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.sp-card p {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.sp-contact-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--thm-base);
    margin-top: auto; /* Pushes content to bottom if heights vary */
}

.sp-address-card {
    grid-column: 1 / -1; /* Full width on all screens */
    text-align: left;
    flex-direction: row;
    gap: 20px;
}

.sp-address-content {
    text-align: center; /* Center text on mobile */
}

@media (min-width: 600px) {
    .sp-address-content {
        text-align: left;
    }
}
