/**
 * Custom Manufacturing Section Styles
 */

.custom-manufacturing-section {
    width: 100%;
    padding: 80px 0;
    position: relative;
    background: #F2CE16;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.custom-manufacturing-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.custom-manufacturing-title {
    width: 100%;
    text-align: center;
}

.custom-manufacturing-title h2 {
    font-size: 48px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 48px;
    margin: 0;
    padding: 0;
}

.custom-manufacturing-title-white {
    color: #ffffff;
}

.custom-manufacturing-title-blue {
    color: #152fbf;
}

.custom-manufacturing-description {
    max-width: 672px;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 28px;
}

.custom-manufacturing-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
    width: 100%;
}

.custom-manufacturing-button-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
}

.custom-manufacturing-button-primary span {
    color: #ea580c;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 28px;
}

.custom-manufacturing-button-primary i {
    color: #ea580c;
    margin-left: 8px;
}

.custom-manufacturing-button-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    text-decoration: none;
}

.custom-manufacturing-button-secondary span {
    color: #ffffff;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 28px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .custom-manufacturing-section {
        padding: 60px 0;
    }

    .custom-manufacturing-title h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .custom-manufacturing-description {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 576px) {
    .custom-manufacturing-section {
        padding: 40px 0;
    }

    .custom-manufacturing-title h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .custom-manufacturing-description {
        font-size: 16px;
        line-height: 24px;
    }

    .custom-manufacturing-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .custom-manufacturing-button-primary,
    .custom-manufacturing-button-secondary {
        width: 100%;
    }
}
